diff options
Diffstat (limited to 'test/Sema/attr-deprecated.c')
-rw-r--r-- | test/Sema/attr-deprecated.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Sema/attr-deprecated.c b/test/Sema/attr-deprecated.c index c9e3dd5..2e3e722 100644 --- a/test/Sema/attr-deprecated.c +++ b/test/Sema/attr-deprecated.c @@ -121,6 +121,6 @@ struct test22 { __attribute((deprecated)) foo_dep e, f; }; -typedef int test23_ty __attribute((deprecated)); // expected-note {{previous definition is here}} -typedef int test23_ty; // expected-note {{'test23_ty' has been explicitly marked deprecated here}} expected-warning {{redefinition of typedef 'test23_ty' is a C11 feature}} +typedef int test23_ty __attribute((deprecated)); +typedef int test23_ty; // expected-note {{'test23_ty' has been explicitly marked deprecated here}} test23_ty test23_v; // expected-warning {{'test23_ty' is deprecated}} |