summaryrefslogtreecommitdiff
path: root/test/SemaObjC/protocol-expr-1.m
blob: 94a0d9e3e8b5955a47ef07cf0ad2feb13f74c4e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics

@protocol fproto;

@protocol p1 
@end

@class cl;

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