blob: ccbf17c2f769731f29b0d37f05cbf0415571d8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// { dg-do compile }
// Specialization of member class template.
template<class T1> struct A
{
template<class T2> struct B {};
template<class T2> struct C {};
};
template <> template <> struct A<int>::B<int>;
template <> template <class U> struct A<int>::B {};
A<int>::B<int> ab; // { dg-error "incomplete" }
A<int>::C<char> ac;
template <> template <class U> struct A<int>::C {}; // { dg-error "specialization" }
|