summaryrefslogtreecommitdiffstats
path: root/test/Rewriter/metadata-test-2.m
blob: c9f937f187980732cb36053dbdfc5de05764fc53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: clang -cc1 -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