2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / constexpr-lambda21.C
blob210726b82775517c40283b0755f23e43603da67c
1 // PR c++/85228
2 // { dg-do compile { target c++17 } }
4 template<int> struct A
6   enum E { e = []{ return 0; }() };
7 };
9 template class A<0>;