OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp56.C
1 // Build don't link:
2 // GROUPS passed templates membertemplates
3 template<class P_numtype, int N_length>
4 class TinyVector {};
5
6 template<class P_numtype, int N_rank>
7 struct Array 
8 {
9     template<int N_rank2>
10     Array() {}
11   
12     template<int N_rank2>
13     P_numtype operator()(const TinyVector<int,N_rank2>& index) const {}
14 };
15