URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [spec8.C] - Rev 693
Compare with Previous | Blame | View Log
// { 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" }