xref: /aosp_15_r20/external/clang/test/Rewriter/metadata-test-2.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2*67e74705SXin Li
3*67e74705SXin Litypedef struct _NSPoint {
4*67e74705SXin Li    float x;
5*67e74705SXin Li    float y;
6*67e74705SXin Li} NSPoint;
7*67e74705SXin Li
8*67e74705SXin Li@interface Intf
9*67e74705SXin Li- (void) MyMeth : (NSPoint) Arg1;
10*67e74705SXin Li@end
11*67e74705SXin Li
12*67e74705SXin Li@implementation Intf
13*67e74705SXin Li- (void) MyMeth : (NSPoint) Arg1{}
14*67e74705SXin Li@end
15*67e74705SXin Li
16