* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / range-for24.C
blobb4a5b185bd7857f5a7885f27063fdc9d59db3da2
1 // PR c++/56794
2 // { dg-require-effective-target c++11 }
4 template<int... values>
5 static void Colors()
7     static const int colors[] = { values... };
9     for(auto c: colors) { }
12 int main()
14     Colors<0,1,2> ();