blob: 6f02aff96de1b74c8d248e856c9e2eeaa2f87adb [file] [log] [blame]
// RUN: %clang_cc1 -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