aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/constexpr-if-lambda2.C
blob: 192c82d34fdedadef7407af9dfaec9465d62ba77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR c++/92654
// { dg-do compile { target c++17 } }

struct A {
  constexpr operator int () { return 42; }
};
template <int I> struct C {
  static const bool ap = I;
};
template <auto I>
void am() {
  [](auto an)
     {
       if constexpr (C<an>::ap) ;
     }(A{});
}
void fn() { am<42>(); }