blob: 93c19b63571b35a33f6edb8733c2767e7cc3b970 [file] [log] [blame]
// Testcase for 'this is a type' syntax.
// Build don't link:
struct B {
typedef int A;
};
template <class T> struct Y {
void f() {
typename T::A *d;
}
};
template class Y<B>;