summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/blocks-4.m
blob: f5af9bc39eb871bc19cc1b2805a39b50c9186bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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);
            }
        }];

}