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
/
class-property-access.m
blob
c46d3fb397cea4147923768ecfe4a44043a83e37
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@interface Test {}
4
+ (Test*)one;
5
- (int)two;
6
@end
7
8
int main ()
9
{
10
return Test.one.two;
11
}
12