Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/* For use with the methods.m test */

@interface A
@end

@interface B
@end

@interface TestPCH
- (void)instMethod;
@end

@implementation TestPCH
- (void)instMethod {
  @try {
  } @catch(A *a) {
  } @catch(B *b) {
  } @catch(...) {
  } @finally {
  }
}
@end