blob: af26545fa69d4cc9a1b07bcd88ceae6ed85d3221 [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