OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / typedef2.C
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;