mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 06:18:56 -04:00

that doesn't have a 'self' as this implicitly captures 'self' and could create retain cycles. Provide fixit. // rdar://11194874 llvm-svn: 165133
21 lines
314 B
Objective-C
21 lines
314 B
Objective-C
// RUN: cp %s %t
|
|
// RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -fixit %t
|
|
// RUN: %clang_cc1 -x objective-c -fobjc-arc -fblocks -Werror %t
|
|
// rdar://11194874
|
|
|
|
@interface Root @end
|
|
|
|
@interface I : Root
|
|
{
|
|
int _bar;
|
|
}
|
|
@end
|
|
|
|
@implementation I
|
|
- (void)foo{
|
|
^{
|
|
_bar = 3;
|
|
}();
|
|
}
|
|
@end
|