You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
402 B

// 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;
};
}