bolt/deps/llvm-18.1.8/clang/test/Import/objc-try-catch/Inputs/F.m

29 lines
305 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01: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 {
}
}