blob: 8c08e909a766afad3b9d959355869209d8ed9458 [file] [log] [blame]
// PR c++/47242
// { dg-do compile { target c++11 } }
template < typename > void
bar ()
{
[i]{}; // { dg-error "declared|invalid" }
}
void
foo ()
{
bar<int>();
}