diff options
-rw-r--r-- | test/CodeGen/unsupported.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/CodeGen/unsupported.c b/test/CodeGen/unsupported.c index 383a06bd1a..c11f1d1ef9 100644 --- a/test/CodeGen/unsupported.c +++ b/test/CodeGen/unsupported.c @@ -1,6 +1,3 @@ // RUN: clang -verify -emit-llvm -o - %s -int f0(int x) { - int vla[x]; - return vla[x-1]; // expected-error {{cannot compile this return inside scope with VLA yet}} -} +void *x = L"foo"; // expected-error {{cannot compile this wide string yet}} |