2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 %s
|
2007-11-10 01:18:29 +08:00
|
|
|
// TODO: We don't support rewrite of method definitions
|
2007-11-02 01:18:37 +08:00
|
|
|
|
|
|
|
@interface Intf
|
|
|
|
- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2;
|
|
|
|
- (id) another:(void *)location with:(unsigned **)arg2;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Intf
|
2009-07-22 08:43:08 +08:00
|
|
|
- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{ return 0; }
|
|
|
|
- (id) another:(void *)location with:(unsigned **)arg2 { return 0; }
|
2007-11-02 01:18:37 +08:00
|
|
|
@end
|