diff options
Diffstat (limited to 'test/SemaObjC/protocol-implementing-class-methods.m')
-rw-r--r-- | test/SemaObjC/protocol-implementing-class-methods.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SemaObjC/protocol-implementing-class-methods.m b/test/SemaObjC/protocol-implementing-class-methods.m index f08a5a9..503eef1 100644 --- a/test/SemaObjC/protocol-implementing-class-methods.m +++ b/test/SemaObjC/protocol-implementing-class-methods.m @@ -5,11 +5,11 @@ @optional - (int) PMeth; @required -- (void) : (double) arg; // expected-note {{method declared here}} +- (void) : (double) arg; // expected-note {{method ':' declared here}} @end @interface NSImage <P1> -- (void) initialize; // expected-note {{method declared here}} +- (void) initialize; // expected-note {{method 'initialize' declared here}} @end @interface NSImage (AirPortUI) @@ -17,7 +17,7 @@ @end @interface NSImage() -- (void) CEMeth; // expected-note {{method declared here}} +- (void) CEMeth; // expected-note {{method 'CEMeth' declared here}} @end @implementation NSImage (AirPortUI) |