2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / constexpr-lambda7.C
blob474ce88f81f3151b9711e2f67fbc2d1414934d5c
1 // Testcase from P0170R1
2 // { dg-do compile { target c++17 } }
4 auto ID = [](auto a) { return a; };
5 static_assert( ID (3) == 3); // OK
6 struct NonLiteral {
7   NonLiteral(int n) : n(n) { }
8   int n;
9 };
11 static_assert( ID (NonLiteral{3}).n == 3); // { dg-error "non-literal" }
12 // { dg-prune-output "static assertion" }