repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
property-getter-dot-syntax.m
blob
d5875a3dad30816f7349dddeb350feea12d9a421
1
// RUN: %clang_cc1 -emit-llvm -o %t %s
2
3
@protocol NSObject
4
- (void *)description;
5
@end
6
7
int main(void)
8
{
9
id<NSObject> eggs;
10
void *eggsText= eggs.description;
11
}