blob: a2fa56d784605f5c7f20116953f33b8b7c737125 [file] [log] [blame]
Argyrios Kyrtzidiseaed19e2011-06-16 00:53:46 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fblocks -fsyntax-only -fobjc-arc -x objective-c %s.result
Argyrios Kyrtzidisd0ba7fc2011-06-16 02:41:46 +00002// RUN: arcmt-test --args -triple x86_64-apple-macosx10.7 -fobjc-nonfragile-abi -fblocks -fsyntax-only %s > %t
John McCall8f0e8d22011-06-15 23:25:17 +00003// RUN: diff %t %s.result
4
5#include "Common.h"
6
7@interface Foo : NSObject
8-(Foo *)something;
9@end
10
11void bar(void (^block)());
12
13void test1(Foo *p) {
14 __weak Foo *x = p; // __block used just to break cycle.
15 bar(^{
16 [x something];
17 });
18}
19
20void test2(Foo *p) {
21 __block Foo *x; // __block used as output variable.
22 bar(^{
23 x = [p something];
24 });
25}