Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1 | // RUN: clang -fsyntax-only -verify %s |
2 | |||||
3 | typedef struct Protocol Protocol; | ||||
4 | |||||
5 | @protocol fproto; | ||||
6 | |||||
7 | @protocol p1 | ||||
8 | @end | ||||
9 | |||||
10 | @class cl; | ||||
11 | |||||
12 | int main() | ||||
13 | { | ||||
14 | Protocol *proto = @protocol(p1); | ||||
15 | Protocol *fproto = @protocol(fproto); | ||||
16 | } | ||||
17 |