1 // RUN: %clang_cc1 -fsyntax-only %s -verify
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}}