blob: 121af3e588e0103ef8626d023e9c0af85caba974 [file] [log] [blame]
Steve Naroffb29b4272008-04-14 22:03:09 +00001// RUN: clang -rewrite-objc %s -o=-
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002
3@protocol P
4- (id<P>) Meth: (id<P>) Arg;
5@end
6
7@interface INTF<P>
8- (id<P>)IMeth;
9@end
10
11@implementation INTF
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +000012- (id<P>)IMeth { return [(id<P>)self Meth: (id<P>)0]; }
Fariborz Jahanianc5692492007-12-17 21:03:50 +000013- (id<P>) Meth : (id<P>) Arg {}
14@end