aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/lambda-uneval10.C
blob: 86065ebca64f314200ad2446082141bd650fbc1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/89421

template <int I = []{return 1;}()> // { dg-message "lambda" "" { target c++17_down } }
struct B
{
  static const int i = I;
};

#if __cplusplus > 201703L
B<> b;
static_assert (b.i == 1);
#endif