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
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
Rewriter
/
rewrite-block-ivar-call.mm
blob
8e5a2ea124a8e08c3b9d5212083febc9d46f4499
1
// RUN: %clang_cc1 -x objective-c++ -fblocks -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s
2
3
@interface Foo {
4
void (^_block)(void);
5
}
6
@end
7
8
@implementation Foo
9
- (void)bar {
10
_block();
11
}
12
@end