summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/c99.cpp
blob: f4c3639e16a905d04b88b7ef421a692aa3d83293 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s

void f0(int i) {
  char array[i]; // expected-error{{variable length arrays}}
}

void f1(int i[static 5]) { // expected-error{{C99}}
}