2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / constexpr-lambda19.C
blobc6266c2bfbbe2f611a750bcc017fe04a5a06eb13
1 // PR c++/84098
2 // { dg-do compile { target c++17 } }
4 struct A{};
6 template < typename >
7 struct Test{
8     static constexpr auto var = []{};
9 };
11 int main(){
12     (void)Test< A >::var;