1 // PR c++/50707 2 // { dg-do compile { target c++11 } } 3 4 int g; 5 6 struct S { 7 int const v=g; 8 }; 9 10 S s; 11