1 // PR c++/84098 2 // { dg-do compile { target c++17 } } 3 4 struct A{}; 5 6 template < typename > 7 struct Test{ 8 static constexpr auto var = []{}; 9 }; 10 main()11 int main(){ 12 (void)Test< A >::var; 13 } 14