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

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> {};