* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / range-for32.C
blob375a7073a4150f80129e16f6bb1035e49e67cb8b
1 // PR c++/77545
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wno-pedantic" }
5 template < typename T > struct A
7   A ();
8   ~A ();
9   T t;
12 void f (A < int > a)
14   for (auto x : (A<int>[]) { a })
15     ;