blob: 50d2d9250dd4a4a6fbd07ba28fa10f8198f139b0 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 %s
Fariborz Jahanian35600022007-11-09 17:18:29 +00002// TODO: We don't support rewrite of method definitions
Fariborz Jahanianecb01e62007-11-01 17:18:37 +00003
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
Mike Stumpd1969d82009-07-22 00:43:08 +000010- (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; }
Fariborz Jahanianecb01e62007-11-01 17:18:37 +000012@end