mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
12 lines
171 B
Objective-C
12 lines
171 B
Objective-C
// RUN: %clang_cc1 -rewrite-objc %s -o -
|
|
|
|
@interface Intf
|
|
@end
|
|
|
|
@implementation Intf(Category)
|
|
- (void) CatMeth {}
|
|
@end
|
|
|
|
@implementation Another
|
|
- (void) CatMeth {}
|
|
@end
|