1 // { dg-do assemble  }
2 
3 struct A {
4   struct B {
5     static int i;
6   };
7   enum { a };
8 };
9 
10 int A::B::i = a;
11