repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
protocol-expr-1.m
blob
fe01d1d47a8d98c5242b30e92dbbc44d5624af51
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@protocol fproto;
4
5
@protocol p1
6
@end
7
8
@class cl;
9
10
int main()
11
{
12
Protocol *proto = @protocol(p1);
13
Protocol *fproto = @protocol(fproto);
14
}
15