]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/auto42.C
fea4c28d84d909be66591a6998b06a5fb2bc26dd
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto42.C
1 // PR c++/60628
2 // { dg-do compile { target c++11 } }
3
4 #include <initializer_list>
5
6 void foo(int i)
7 {
8 auto x[1] = { 0 }; // { dg-error "array of .auto" }
9 }