Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / range-for10.C
blob1397830908d773d7530c5f8f7a0e9202093bfd4f
1 // PR c++/47388
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fno-for-scope" }
5 template <int>
6 void
7 foo ()
9   int a[] = { 1, 2, 3, 4 };
10   for (int i : a)
11     ;
14 void
15 bar ()
17   foo <0> ();