blob: 427e74417ab460641443ca1a21bbc26aab051b46 [file] [log] [blame]
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001// RUN: clang -fsyntax-only -verify %s
2
Fariborz Jahanian66c5dfc2007-12-07 00:18:54 +00003@class Protocol;
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00004
5@protocol fproto;
6
7@protocol p1
8@end
9
10@class cl;
11
12int main()
13{
14 Protocol *proto = @protocol(p1);
15 Protocol *fproto = @protocol(fproto);
16 Protocol *pp = @protocol(i); // expected-error {{cannot find protocol declaration for 'i'}}
17 Protocol *p1p = @protocol(cl); // expected-error {{cannot find protocol declaration for 'cl'}}
18}
19