summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Sema/const-eval.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Sema/const-eval.c b/test/Sema/const-eval.c
index a9c8806b5d..f1c0485bc1 100644
--- a/test/Sema/const-eval.c
+++ b/test/Sema/const-eval.c
@@ -117,3 +117,7 @@ EVAL_EXPR(42, __builtin_constant_p(pr11391.f = 1))
float varfloat;
const float constfloat = 0;
EVAL_EXPR(43, varfloat && constfloat) // expected-error {{must have a constant size}}
+
+// <rdar://problem/11205586>
+// (Make sure we continue to reject this.)
+EVAL_EXPR(44, "x"[0]); // expected-error {{variable length array}}