xref: /aosp_15_r20/external/clang/test/Rewriter/metadata-test-2.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2
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
16