xref: /aosp_15_r20/external/clang/test/CodeGenObjC/super-classmethod-category.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -emit-llvm -o %t %s
2
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
14