aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Rewriter/weak_byref_objects.m
blob: 52111c10edc01749b42358b1cfb14791ace59886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -fblocks -triple i386-apple-darwin9 -fobjc-gc -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -

#define nil 0
int main(void) {
        __weak __block id foo = nil;
        __block id foo2 = nil;
        id foo3 = nil;

        void (^myblock)(void) = ^{
                foo = nil;
                foo2 = nil;
                [foo3 bar];
                id foo4 = foo3;
        };
}