blob: 84b1d35ba91db9a1441154e15d3bd484c8bb70e0 [file] [log] [blame]
Douglas Gregorc19ee3e2009-06-17 23:37:01 +00001// RUN: clang-cc -fsyntax-only -verify %s
Douglas Gregor551f48c2009-03-27 04:21:56 +00002
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