brintos

brintos / llvm-project-archived public Read only

0
0
Text · 290 B · ec4cfe4 Raw
15 lines · plain
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -2 3@protocol P4- (id<P>) Meth: (id<P>) Arg;5@end6 7@interface INTF<P>8- (id<P>)IMeth;9@end10 11@implementation INTF12- (id<P>)IMeth { return [(id<P>)self Meth: (id<P>)0]; }13- (id<P>) Meth : (id<P>) Arg { return 0; }14@end15