summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/protocol-expr-1.m
blob: 22c0ed0ba4c3fa0c3924b12a107cfc6223366339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: clang -cc1 -fsyntax-only -verify %s

@protocol fproto;

@protocol p1 
@end

@class cl;

int main()
{
	Protocol *proto = @protocol(p1);
        Protocol *fproto = @protocol(fproto);
}

OpenPOWER on IntegriCloud