mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
15 lines
224 B
Objective-C
15 lines
224 B
Objective-C
// RUN: %clang_cc1 -rewrite-objc %s -o -
|
|
|
|
typedef struct _NSPoint {
|
|
float x;
|
|
float y;
|
|
} NSPoint;
|
|
|
|
@interface Intf
|
|
- (void) MyMeth : (NSPoint) Arg1;
|
|
@end
|
|
|
|
@implementation Intf
|
|
- (void) MyMeth : (NSPoint) Arg1{}
|
|
@end
|
|
|