PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / range-for10.C
blob7288a3b8b0c7cfae19553ae38e085bee5e03981a
1 // PR c++/47388
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fno-for-scope -Wno-deprecated" }
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> ();