brintos

brintos / llvm-project-archived public Read only

0
0
Text · 451 B · 619a886 Raw
13 lines · plain
1// RUN: %clang_cc1 %s2// TODO: We don't support rewrite of method definitions3 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@end8 9@implementation Intf10- (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; }12@end13