2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / typedef2.C
blob8c451304e89d97ad7d92c104fdb1f7c085f851d3
1 // { dg-do assemble  }
2 struct S{
4   static const int i;
5   static const int j;
6 };
8 typedef S T;
9 const int T::i = 4;
10 const int T::j = 4;