From 6f66c26c9482d049375312f9dad2b7f7c18c4cc2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 2 Aug 2007 22:36:03 +0000 Subject: [PATCH] update test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40765 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Sema/array-constraint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Sema/array-constraint.c b/test/Sema/array-constraint.c index 4b70bb9bb3..0369eaef1e 100644 --- a/test/Sema/array-constraint.c +++ b/test/Sema/array-constraint.c @@ -2,7 +2,7 @@ struct s; struct s* t (struct s z[]) { // expected-error {{array has incomplete element type}} - return z; + return z; // expected-error {{incompatible pointer type returning}} } void *k (void l[2]) { // expected-error {{array has incomplete element type}} -- 2.40.0