blob: 6f02aff96de1b74c8d248e856c9e2eeaa2f87adb [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o %t %s
Fariborz Jahanian475831b2009-01-07 20:11:22 +00002
3@interface BASE
4+ (int) BaseMeth;
5@end
6
7@interface Child: BASE
8@end
9
10@interface Child (Categ)
11+ (int) flushCache2;
12@end
13
14@implementation Child @end
15
16@implementation Child (Categ)
17+ (int) flushCache2 { [super BaseMeth]; }
18@end
19