aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/typedef2.C
blob: b12ed13c40624e809769a6f5f4428c49f8e661c2 (plain)
1
2
3
4
5
6
7
8
9
10
//Build don't link:
struct S{

  static const int i;
  static const int j;
};

typedef S T;
const int T::i = 4;
const int T::j = 4;