view gcc/testsuite/g++.dg/cpp2a/lambda-uneval10.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// 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