blob: c19663cec45a673513f9549635080fed34fa9403 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o %t %s
Fariborz Jahanian7ce77922009-02-28 20:07:56 +00002
3@interface SUPER
4+ (void)Meth;
5@end
6
7@interface CURRENT : SUPER
8+ (void)Meth;
9@end
10
11@implementation CURRENT(CAT)
12+ (void)Meth { [super Meth]; }
13@end