mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
13 lines
189 B
Objective-C
13 lines
189 B
Objective-C
// RUN: %clang_cc1 -emit-llvm -o %t %s
|
|
|
|
@interface SUPER
|
|
+ (void)Meth;
|
|
@end
|
|
|
|
@interface CURRENT : SUPER
|
|
+ (void)Meth;
|
|
@end
|
|
|
|
@implementation CURRENT(CAT)
|
|
+ (void)Meth { [super Meth]; }
|
|
@end
|