Home | History | Annotate | Download | only in SemaObjCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 @interface NSObject @end
      4 
      5 @interface NSObject (NSScriptClassDescription)
      6 @end
      7 
      8 void f() {
      9   NSScriptClassDescription *f; // expected-error {{use of undeclared identifier 'NSScriptClassDescription'}}
     10 }
     11