aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/crash4.C
blob: 510d4cdd8363413f492d1ddb6ed7a07cd6ca1791 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link:

template <unsigned rank>
class Tensor
{
};

template <unsigned rank>
class Tensor<2> : Tensor<rank> { // ERROR - template parameters not used
};