xref: /llvm-project/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/p1-cxx0x.cpp (revision d9826433f31cd081d0229d47d7982b5bf3c0055f)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2 
f()3 void f() {
4   int b[5];
5   auto a[5] = b; // expected-error{{variable 'a' with type 'auto[5]' has incompatible initializer of type 'int[5]'}}
6   auto *c[5] = b; // expected-error{{variable 'c' with type 'auto *[5]' has incompatible initializer of type 'int[5]'}}
7 }
8