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.

21 lines
314 B

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