diff options
Diffstat (limited to 'test/SemaObjC/class-method-lookup.m')
-rw-r--r-- | test/SemaObjC/class-method-lookup.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/class-method-lookup.m b/test/SemaObjC/class-method-lookup.m index f26d692..8c8c216 100644 --- a/test/SemaObjC/class-method-lookup.m +++ b/test/SemaObjC/class-method-lookup.m @@ -20,7 +20,7 @@ [self rootInstanceMethod]; /* class is searched for an instance method */ [MyIntermediate rootInstanceMethod]; /* with the same name. */ - [self instanceMethod];// expected-warning {{'-instanceMethod' not found (return type defaults to 'id')}} + [self instanceMethod];// expected-warning {{'+instanceMethod' not found (return type defaults to 'id')}} [MyDerived instanceMethod];// expected-warning {{'+instanceMethod' not found (return type defaults to 'id')}} } @end |