blob: dfe99c7b22d5c39db540a0a842f113fd35658c8d [file] [log] [blame]
// Build don't link:
template <class T>
struct S {
typedef T X;
class C {
typedef T X;
};
};
template <int I>
struct S2 {
enum { A = I };
void f() {
int A;
}
};