mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
testcase for recent bugfix
llvm-svn: 35630
This commit is contained in:
parent
3888505be5
commit
57b592a607
29
test/FrontendObjC/2007-04-03-ObjcEH.m
Normal file
29
test/FrontendObjC/2007-04-03-ObjcEH.m
Normal file
@ -0,0 +1,29 @@
|
||||
// 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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user