diff options
Diffstat (limited to 'clang/test/SemaObjC/method-undef-category-warn-1.m')
-rw-r--r-- | clang/test/SemaObjC/method-undef-category-warn-1.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/SemaObjC/method-undef-category-warn-1.m b/clang/test/SemaObjC/method-undef-category-warn-1.m index 929f162cb90..b390827656c 100644 --- a/clang/test/SemaObjC/method-undef-category-warn-1.m +++ b/clang/test/SemaObjC/method-undef-category-warn-1.m @@ -4,8 +4,8 @@ @end @protocol P -- (void) Pmeth; // expected-note {{method declared here}} -- (void) Pmeth1; // expected-note {{method declared here}} +- (void) Pmeth; // expected-note {{method 'Pmeth' declared here}} +- (void) Pmeth1; // expected-note {{method 'Pmeth1' declared here}} @end @interface MyClass1(CAT) <P> // expected-note {{required for direct or indirect protocol 'P'}} @@ -13,7 +13,7 @@ @end @implementation MyClass1(CAT) // expected-warning {{incomplete implementation}} \ - // expected-warning {{method in protocol not implemented}} + // expected-warning {{method 'Pmeth' in protocol not implemented}} - (void) Pmeth1{} @end @@ -22,7 +22,7 @@ @end @implementation MyClass1(DOG) // expected-warning {{incomplete implementation}} \ - // expected-warning {{method in protocol not implemented}} + // expected-warning {{method 'Pmeth1' in protocol not implemented}} - (void) Pmeth {} @end |