rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/typedef2.C

11 lines
135 B
C

// { 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;