blob: ab838f18bb935e631d05400797e1773679bbbc31 [file] [log] [blame]
// RUN: clang-cc -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