blob: bd9e89f76a0a4e39b1e34568f4b2f7ba3b2982c0 [file] [log] [blame]
Douglas Gregor551f48c2009-03-27 04:21:56 +00001// RUN: clang-cc -fsyntax-only %s
2
3class A;
4
5class S {
6public:
7 template<typename T> struct A {
8 struct Nested {
9 typedef T type;
10 };
11 };
12};
13
14int i;
15S::A<int>::Nested::type *ip = &i;
16