1 // { dg-do compile { target c++11 } }
2 
3 struct A
4 {
5   int i = f();
6   static int f(int i = 42) { return i; }
7 };
8 
9 A a;
10