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

21 lines
376 B
C

// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
typedef int I;
typedef int I;
// DR56 makes clear that duplicate typedefs in class scopes are
// invalid.
struct A {
typedef int I; // { dg-error "" }
typedef int I; // { dg-error "" }
};
template <class T>
struct S {
typedef int I; // { dg-error "" }
typedef int I; // { dg-error "" }
};