blob: 3335d200226d5a0b165fc5ff468e63ffb7f887ed [file] [log] [blame]
Fariborz Jahanian737061f2009-12-11 00:26:36 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3@interface NSObject @end
4
5@interface NSObject (NSScriptClassDescription)
6@end
7
8void f() {
9 NSScriptClassDescription *f; // expected-error {{use of undeclared identifier 'NSScriptClassDescription'}}
10}