brintos

brintos / llvm-project-archived public Read only

0
0
Text · 344 B · 2d6c2f2 Raw
13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only %s -verify2 3const int ksize = 42;4int size = 42;5 6@interface X7{8  int arr1[ksize]; // expected-warning{{variable length array folded to constant array}}9  int arr2[size]; // expected-error{{instance variables must have a constant size}}10  int arr3[ksize-43]; // expected-error{{array size is negative}}11}12@end13