aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/unsupported.c
blob: 664119acdd49f797a65167dff1e41da62647e8e3 (plain)
1
2
3
4
5
6
// RUN: clang -verify -emit-llvm -o %t %s 

int f0(int x) {
  int vla[x];
  return vla[x-1]; // expected-error {{cannot codegen this return inside scope with VLA yet}}
}