llvm-6502/test/FrontendObjC/2007-04-03-ObjcEH.m

30 lines
398 B
Mathematica
Raw Normal View History

// RUN: %llvmgcc -c %s -o /dev/null
@interface B
-(int)bar;
@end
@interface A
-(void) Foo:(int) state;
@end
@implementation A
- (void) Foo:(int) state {
int wasResponded = 0;
@try {
if (state) {
B * b = 0;
@try { }
@finally {
wasResponded = ![b bar];
}
}
}
@finally {
}
}
@end