1
0
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:
Chris Lattner 2007-04-03 21:47:36 +00:00
parent 3888505be5
commit 57b592a607

View 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