blob: bd9e89f76a0a4e39b1e34568f4b2f7ba3b2982c0 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only %s
class A;
class S {
public:
template<typename T> struct A {
struct Nested {
typedef T type;
};
};
};
int i;
S::A<int>::Nested::type *ip = &i;