You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
574 B
42 lines
574 B
4 months ago
|
/* 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
|
||
|
|
||
|
@interface PR12689_2
|
||
|
@end
|
||
|
|
||
|
@implementation PR12689_2
|
||
|
-(void)mugi:(int)x {
|
||
|
switch(x) {
|
||
|
case 23: [self bonk:x]; break;
|
||
|
case 82: break;
|
||
|
}
|
||
|
}
|
||
|
-(void)bonk:(int)x {
|
||
|
}
|
||
|
@end
|