OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / range-for22.C
1 // { dg-options -std=c++0x }
2
3 template<int I> void f() {
4   for (auto i: {I} );
5 }