diff options
Diffstat (limited to 'test/Sema/struct-compat.c')
-rw-r--r-- | test/Sema/struct-compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Sema/struct-compat.c b/test/Sema/struct-compat.c index 65bef9f60555..68bb2cad45e1 100644 --- a/test/Sema/struct-compat.c +++ b/test/Sema/struct-compat.c @@ -1,8 +1,8 @@ /* RUN: %clang_cc1 %s -fsyntax-only -pedantic -verify */ -extern struct {int a;} x; // expected-note {{previous definition is here}} -extern struct {int a;} x; // expected-error {{redefinition of 'x'}} +extern struct {int a;} x; // expected-note {{previous declaration is here}} +extern struct {int a;} x; // expected-error {{redeclaration of 'x'}} struct x; int a(struct x* b) { |