blob: 7b9e22decb61410c78a3807dea80512762daae54 [file] [log] [blame]
/* For use with the methods.m test */
@interface TestPCH
+ alloc;
- (instancetype)instMethod;
@end
@class TestForwardClassDecl;
// FIXME: @compatibility_alias AliasForTestPCH TestPCH;
// http://llvm.org/PR12689
@interface PR12689
@end
@implementation PR12689
-(void)mugi:(int)x {
switch(x) {
case 23: {}
}
}
-(void)bonk:(int)x {
switch(x) {
case 42: {}
}
}
@end