summaryrefslogtreecommitdiffstats
path: root/clang/test/Rewriter/rewrite-weak-attr.m
blob: 196f1d3c6e952f130fdbb9290983361f7b1cdd01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -triple i686-pc-win32 -fms-extensions -fblocks -Dnil=0 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5   -o - %s
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;
        };
}