aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/range-for26.C
blob: 71359cde6e4e3e8fd63c8bccee65437668955c6e (plain)
1
2
3
4
5
6
7
// PR c++/58503
// { dg-require-effective-target c++11 }

template<int> void foo()
{
  for (auto i : 0) {}  // { dg-error "there are no arguments" }
}