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