blob: ab838f18bb935e631d05400797e1773679bbbc31 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -rewrite-objc %s -o=-
Fariborz Jahanian6de88a82007-11-13 23:21:38 +00002
3typedef struct _NSPoint {
4 float x;
5 float y;
6} NSPoint;
7
8@interface Intf
9- (void) MyMeth : (NSPoint) Arg1;
10@end
11
12@implementation Intf
13- (void) MyMeth : (NSPoint) Arg1{}
14@end
15