llvm-6502/test/FrontendObjC/2007-10-17-SJLJExceptions.m
2007-10-19 18:36:04 +00:00

24 lines
297 B
Objective-C

#import <stdio.h>
@interface Foo {
char c;
short s;
int i;
long l;
float f;
double d;
}
-(Foo*)retain;
@end
struct Foo *bork(Foo *FooArray) {
struct Foo *result = 0;
@try {
result = [FooArray retain];
} @catch(id any) {
printf("hello world\n");
}
return result;
}