16 lines · plain
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -2 3typedef struct _NSPoint {4 float x;5 float y;6} NSPoint;7 8@interface Intf9- (void) MyMeth : (NSPoint) Arg1;10@end11 12@implementation Intf13- (void) MyMeth : (NSPoint) Arg1{}14@end15 16