teak-llvm/clang/test/SemaCXX/c99-variable-length-array-cxx11.cpp
Douglas Gregor da776f9a8e Use the C++11 POD definition in C++11 mode to determine whether one
can create a VLA of class type. Fixes <rdar://problem/12151822>.

llvm-svn: 171783
2013-01-07 20:03:16 +00:00

27 lines
708 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wvla %s
struct StillPOD {
StillPOD() = default;
};
struct StillPOD2 {
StillPOD np;
};
struct NonPOD {
NonPOD(int) {}
};
struct POD {
int x;
int y;
};
// We allow VLAs of POD types, only.
void vla(int N) {
int array1[N]; // expected-warning{{variable length arrays are a C99 feature}}
POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}}
StillPOD array3[N]; // expected-warning{{variable length arrays are a C99 feature}}
StillPOD2 array4[N][3]; // expected-warning{{variable length arrays are a C99 feature}}
NonPOD array5[N]; // expected-error{{variable length array of non-POD element type 'NonPOD'}}
}