blob: 80c86f0d4f9db486297120926ea896de4b7dda4d [file] [log] [blame]
// RUN: clang -rewrite-test %s -o=-
typedef struct _NSPoint {
float x;
float y;
} NSPoint;
@interface Intf
- (void) MyMeth : (NSPoint) Arg1;
@end
@implementation Intf
- (void) MyMeth : (NSPoint) Arg1{}
@end