blob: 42cf4f1c5e23a55901da6c1bc5d2b7806a8a85e2 [file] [log] [blame]
// { 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 "" }
};