1*a108760bSRichard Smith #ifndef C_H 2*a108760bSRichard Smith #define C_H 3*a108760bSRichard Smith template<typename T> struct S { int n; }; 4*a108760bSRichard Smith template<typename U> struct T<U>::S { int n; }; 5*a108760bSRichard Smith template<typename U> enum T<U>::E : int { e }; 6*a108760bSRichard Smith #endif 7