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.
14 lines
405 B
14 lines
405 B
// RUN: %clang_cc1 -triple i686-pc-win32 -fms-extensions -fblocks -Dnil=0 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -o - %s
|
|
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;
|
|
};
|
|
}
|