OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / crash4.C
1 // Build don't link:
2
3 template <unsigned rank>
4 class Tensor
5 {
6 };
7
8 template <unsigned rank>
9 class Tensor<2> : Tensor<rank> { // ERROR - template parameters not used
10 };
11