diff options
Diffstat (limited to 'test/Sema/expr-comma.c')
-rw-r--r-- | test/Sema/expr-comma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Sema/expr-comma.c b/test/Sema/expr-comma.c index e2beafe..04e57de 100644 --- a/test/Sema/expr-comma.c +++ b/test/Sema/expr-comma.c @@ -1,5 +1,4 @@ // RUN: %clang_cc1 %s -fsyntax-only -verify -std=c89 -Wno-sizeof-array-decay -// expected-no-diagnostics // rdar://6095180 struct s { char c[17]; }; @@ -15,4 +14,4 @@ int B[sizeof((a.c)) == 17 ? 1 : -1]; int W[sizeof(0, a.c) == sizeof(char*) ? 1 : -1]; int X[sizeof(0, (foo().c)) == 17 ? 1 : -1]; int Y[sizeof(0, (a,b).c) == 17 ? 1 : -1]; -int Z[sizeof(0, (a=b).c) == 17 ? 1 : -1]; +int Z[sizeof(0, (a=b).c) == 17 ? 1 : -1]; // expected-warning {{expression with side effects has no effect in an unevaluated context}} |