* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic37.C
blobdb488ef55a4c26c46475d3327a548be575dd9c54
1 // { dg-do compile { target c++11 } }
2 template<typename... Values>
3 struct tuple
5   static const __SIZE_TYPE__ length = sizeof...(Values);
6 };
8 int a0[tuple<>::length == 0? 1 : -1];
9 int a1[tuple<int>::length == 1? 1 : -1];
10 int a2[tuple<int, float>::length == 2? 1 : -1];