blob: b7a5e733dae4a8b10f55c8e6d4eff332a25ba1d8 [file] [log] [blame]
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00001// RUN: clang -rewrite-test %s
2
3@interface Intf
4- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2;
5- (id) another:(void *)location with:(unsigned **)arg2;
6@end
7
8@implementation Intf
9- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{}
10- (id) another:(void *)location with:(unsigned **)arg2 {}
11@end