summaryrefslogtreecommitdiff
path: root/clang/test/CXX/temp/temp.spec/temp.explicit/p11.cpp
blob: 4ca54283157b012077d7f1c50f8d14ce57c82071 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -fsyntax-only -verify %s

class X {
  template <typename T> class Y {};
};

class A {
  class B {};
  class C {};
};

// C++0x [temp.explicit] 14.7.2/11:
//   The usual access checking rules do not apply to names used to specify
//   explicit instantiations.
template class X::Y<A::B>;

// As an extension, this rule is applied to explicit specializations as well.
template <> class X::Y<A::C> {};