Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc %s |
Fariborz Jahanian | 3560002 | 2007-11-09 17:18:29 +0000 | [diff] [blame] | 2 | // TODO: We don't support rewrite of method definitions |
Fariborz Jahanian | ecb01e6 | 2007-11-01 17:18:37 +0000 | [diff] [blame] | 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{} |
| 11 | - (id) another:(void *)location with:(unsigned **)arg2 {} |
| 12 | @end |