xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/method-encoding-2.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 %s
2// TODO: We don't support rewrite of method definitions
3
4@interface Intf
5- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2;
6- (id) another:(void *)location with:(unsigned **)arg2;
7@end
8
9@implementation Intf
10- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{ return 0; }
11- (id) another:(void *)location with:(unsigned **)arg2 { return 0; }
12@end
13