summaryrefslogtreecommitdiff
path: root/test/Rewriter/weak_byref_objects.m
blob: 09d30ed268b065d6542cc19c75237a1fe1652b4d (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() {
        __weak __block id foo = nil;
        __block id foo2 = nil;
        id foo3 = nil;

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