2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / range-for19.C
blobe3f446f3700a90aa633cafc2367bab89eb11f56c
1 // PR c++/49838
3 // { dg-do compile { target c++11 } }
5 int main()
7   auto a;        // { dg-error "no initializer" }
8   for(auto i: a) // { dg-error "deduce" }
9     ;