blob: a2dd350369ab674d5edc8bc564a09a5097210ad7 [file] [log] [blame]
// PR c++/84091
// { dg-do compile { target c++11 } }
template < typename > void f ()
{
[] { struct A {} a; } ();
}
int main ()
{
f < int > ();
return 0;
}