blob: dff2866020d553121a04ffb450c2538953f1a7d1 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
@protocol fproto;
@protocol p1
@end
@class cl;
int main()
{
Protocol *proto = @protocol(p1);
Protocol *fproto = @protocol(fproto);
}