// { dg-do compile { target c++11 } } //This error is diagnosed at instantiation time template struct S1 { enum E : T; // { dg-message "previous definition" } enum E : int; // { dg-error "different underlying type" } }; template struct S1; template struct S2 { enum E : T; enum E : T; }; template struct S2; template struct S3 { enum E : T1; // { dg-message "previous definition" } enum E : T2; // { dg-error "different underlying type" } }; template struct S3; template struct S4 { enum E : T1; // { dg-message "previous definition" } enum E : T2; // { dg-error "different underlying type" } }; template struct S4;