diff options
Diffstat (limited to 'test/SemaObjC/undef-class-messagin-error.m')
-rw-r--r-- | test/SemaObjC/undef-class-messagin-error.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SemaObjC/undef-class-messagin-error.m b/test/SemaObjC/undef-class-messagin-error.m index 0a400dd..63e0b9d 100644 --- a/test/SemaObjC/undef-class-messagin-error.m +++ b/test/SemaObjC/undef-class-messagin-error.m @@ -1,13 +1,13 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s -@interface _Child +@interface _Child // expected-note{{'_Child' declared here}} + (int) flashCache; @end -@interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'}} +@interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'; did you mean '_Child'?}} + (int) flushCache2; @end -@implementation Child (Categ) // expected-error {{cannot find interface declaration for 'Child'}} +@implementation OtherChild (Categ) // expected-error {{cannot find interface declaration for 'OtherChild'}} + (int) flushCache2 { [super flashCache]; } // expected-error {{no @interface declaration found in class messaging of 'flushCache2'}} @end |