blob: b0ee056ef379e0730be8e55666e3d34b68797f0f [file] [log] [blame]
Douglas Gregor043cad22009-09-11 00:18:58 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3void f0(int i) {
4 char array[i]; // expected-error{{variable length arrays}}
5}
6
7void f1(int i[static 5]) { // expected-error{{C99}}
8}