Fariborz Jahanian | ecb01e6 | 2007-11-01 17:18:37 +0000 | [diff] [blame^] | 1 | // 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 |