diff options
Diffstat (limited to 'test/SemaObjC/warn-deprecated-implementations.m')
-rw-r--r-- | test/SemaObjC/warn-deprecated-implementations.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/SemaObjC/warn-deprecated-implementations.m b/test/SemaObjC/warn-deprecated-implementations.m index 60da7b0..919b221 100644 --- a/test/SemaObjC/warn-deprecated-implementations.m +++ b/test/SemaObjC/warn-deprecated-implementations.m @@ -1,16 +1,16 @@ -// RUN: %clang_cc1 -fsyntax-only -Wdeprecated-implementations -verify %s +// RUN: %clang_cc1 -fsyntax-only -Wdeprecated-implementations -verify -Wno-objc-root-class %s // rdar://8973810 @protocol P -- (void) D __attribute__((deprecated)); // expected-note {{method declared here}} +- (void) D __attribute__((deprecated)); // expected-note {{method 'D' declared here}} @end @interface A <P> -+ (void)F __attribute__((deprecated)); // expected-note {{method declared here}} ++ (void)F __attribute__((deprecated)); // expected-note {{method 'F' declared here}} @end @interface A() -- (void) E __attribute__((deprecated)); // expected-note {{method declared here}} +- (void) E __attribute__((deprecated)); // expected-note {{method 'E' declared here}} @end @implementation A @@ -34,7 +34,7 @@ __attribute__((deprecated)) @end @interface BASE -- (void) B __attribute__((deprecated)); // expected-note {{method declared here}} +- (void) B __attribute__((deprecated)); // expected-note {{method 'B' declared here}} @end @interface SUB : BASE |