blob: 2000a351c1858882e35c6de86735e905e0c7bdd6 [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed templates membertemplates
template<class P_numtype, int N_length>
class TinyVector {};
template<class P_numtype, int N_rank>
struct Array
{
template<int N_rank2>
Array() {}
template<int N_rank2>
P_numtype operator()(const TinyVector<int,N_rank2>& index) const {}
};