blob: d945ed44fac0750d11388b2049c4862dc11a2cc7 [file] [log] [blame]
Fariborz Jahanian2f764f12010-02-03 00:01:43 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -emit-llvm -fblocks -o %t %s
2// rdar://7590273
3
4void EXIT(id e);
5
6@interface NSBlockOperation {
7}
8+(id)blockOperationWithBlock:(void (^)(void))block ;
9@end
10
11void FUNC() {
12 [NSBlockOperation blockOperationWithBlock:^{
13 @try {
14
15 }
16 @catch (id exception) {
17 EXIT(exception);
18 }
19 }];
20
21}