1 // PR c++/49838 2 3 // { dg-do compile } 4 // { dg-options "-std=c++0x" } 5 main()6 int main() 7 { 8 auto a; // { dg-error "no initializer" } 9 for(auto i: a) // { dg-error "deduce" } 10 ; 11 } 12