blob: 7045afc3032f3f74fb8355896a01d8580b21197a [file] [log] [blame]
Douglas Gregorff668032009-05-13 18:28:20 +00001// RUN: clang-cc -fsyntax-only -std=c++0x -verify %s
2namespace 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
14template<typename T> struct X2 { }; // expected-note{{here}}
15
16template struct ::N1::Inner::X1<float>;
17
18namespace 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}