]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaTemplate/temp_explicit_cxx0x.cpp
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / SemaTemplate / temp_explicit_cxx0x.cpp
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -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 }