blob: 82ced63318646d9e2190dc5a471edfe43ae8c977 [file] [log] [blame]
// RUN: clang -fnext-runtime -emit-llvm -o %t %s
@interface BASE
+ (int) BaseMeth;
@end
@interface Child: BASE
@end
@interface Child (Categ)
+ (int) flushCache2;
@end
@implementation Child @end
@implementation Child (Categ)
+ (int) flushCache2 { [super BaseMeth]; }
@end