blob: b8b15d01aee778de7d85fced48d1557fe4bd51bf [file] [log] [blame]
// PR c++/43502
// { dg-do compile { target c++11 } }
// { dg-options "-fcompare-debug" }
void g (int n)
{
int bef ([]{return 0;}());
}
struct S {
void f (int = []{return 0;}(), int = [] { return 0;}());
};
int main ()
{
S ().f ();
return 0;
}