OSDN Git Service

new
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / typedef2.C
1 //Build don't link:
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;