llvm-for-llvmta/tools/clang/test/Import/objc-try-catch/Inputs/F.m

29 lines
305 B
Mathematica
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
@interface Exception
@end
@interface OtherException
@end
void f() {
@try {
Exception *e;
@throw e;
}
@catch (Exception *varname) {
}
@finally {
}
@try {
}
@catch (Exception *varname1) {
@throw;
}
@catch (OtherException *varname2) {
}
@try {
}
@finally {
}
}