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