blob: 73106d78b7b702e1015fba5bb91c786af22f68c3 [file] [log] [blame]
// PR c++/56565
// { dg-do compile { target c++11 } }
struct bug { int a; int *b = [&]{ return &a; }(); };