* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / range-for27.C
bloba9cfb8ebc32c7c80d2b2d16e9ed47120a7290741
1 // PR c++/58503
2 // { dg-require-effective-target c++11 }
3 // { dg-options "-fpermissive -w" }
5 struct c { };
7 template<int> void foo()
9   for (auto i : c()) { }
12 c* begin(const c&);
13 c* end(const c&);
15 template void foo<1>();