bolt/deps/llvm-18.1.8/clang/test/Rewriter/rewrite-eh.m
2025-02-14 19:21:04 +01:00

19 lines
289 B
Objective-C

// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -fobjc-exceptions -o - %s
@interface NSException
@end
@interface Foo
@end
@implementation Foo
- (void)bar {
@try {
} @catch (NSException *e) {
}
@catch (Foo *f) {
}
@catch (...) {
}
}
@end