summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/typedef2.C
blob: 8c451304e89d97ad7d92c104fdb1f7c085f851d3 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }
struct S{

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

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