blob: dff2866020d553121a04ffb450c2538953f1a7d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// RUN: clang -fsyntax-only -verify %s
@protocol fproto;
@protocol p1
@end
@class cl;
int main()
{
Protocol *proto = @protocol(p1);
Protocol *fproto = @protocol(fproto);
}
|