summaryrefslogtreecommitdiff
path: root/test/SemaObjC/protocol-expr-1.m
blob: fe01d1d47a8d98c5242b30e92dbbc44d5624af51 (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);
}