1 // PR c++/49092
2 
3 struct A
4 {
5   A();
6 };
7 
8 int i;
9 
A()10 A::A()
11 {
12   const int j = i;
13 }
14