Douglas Gregor | ff66803 | 2009-05-13 18:28:20 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -std=c++0x -verify %s |
| 2 | namespace N1 { |
| 3 | |
| 4 | template<typename T> struct X0 { }; // expected-note{{here}} |
| 5 | |
| 6 | namespace Inner { |
| 7 | template<typename T> struct X1 { }; |
| 8 | } |
| 9 | |
| 10 | template struct X0<int>; |
| 11 | template struct Inner::X1<int>; |
| 12 | } |
| 13 | |
| 14 | template<typename T> struct X2 { }; // expected-note{{here}} |
| 15 | |
| 16 | template struct ::N1::Inner::X1<float>; |
| 17 | |
| 18 | namespace N2 { |
| 19 | using namespace N1; |
| 20 | |
| 21 | template struct X0<double>; // expected-error{{not in a namespace enclosing}} |
| 22 | |
| 23 | template struct X2<float>; // expected-error{{at global scope}} |
| 24 | } |