xref: /minix3/external/bsd/llvm/dist/clang/test/Rewriter/method-encoding-1.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel Sambuc@protocol P1
4*f4a2713aSLionel Sambuc- (void) MyProtoMeth : (int **) arg1 : (void*) arg2;
5*f4a2713aSLionel Sambuc+ (void) MyProtoMeth : (int **) arg1 : (void*) arg2;
6*f4a2713aSLionel Sambuc@end
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel Sambuc@interface Intf <P1>
9*f4a2713aSLionel Sambuc- (char *) MyMeth : (double) arg1 : (char *[12]) arg2;
10*f4a2713aSLionel Sambuc- (id) address:(void *)location with:(unsigned **)arg2;
11*f4a2713aSLionel Sambuc@end
12*f4a2713aSLionel Sambuc
13*f4a2713aSLionel Sambuc@implementation Intf
14*f4a2713aSLionel Sambuc- (char *) MyMeth : (double) arg1 : (char *[12]) arg2{ return 0; }
15*f4a2713aSLionel Sambuc- (void) MyProtoMeth : (int **) arg1 : (void*) arg2 {}
16*f4a2713aSLionel Sambuc+ (void) MyProtoMeth : (int **) arg1 : (void*) arg2 {}
17*f4a2713aSLionel Sambuc- (id) address:(void *)location with:(unsigned **)arg2{ return 0; }
18*f4a2713aSLionel Sambuc@end
19