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.

22 lines
441 B

// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fobjc-exceptions -fblocks -o %t %s
// rdar://7590273
void EXIT(id e);
@interface NSBlockOperation {
}
+(id)blockOperationWithBlock:(void (^)(void))block ;
@end
void FUNC() {
[NSBlockOperation blockOperationWithBlock:^{
@try {
}
@catch (id exception) {
EXIT(exception);
}
}];
}