1 // { dg-do assemble  }
2 struct S{
3 
4   static const int i;
5   static const int j;
6 };
7 
8 typedef S T;
9 const int T::i = 4;
10 const int T::j = 4;
11