blob: a55923c2105836d8ceda884e54f3db656ec92565 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -verify %s
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002
3@protocol P
4@end
5
6@interface INTF<P>
7- (void)IMeth;
Fariborz Jahanianc5692492007-12-17 21:03:50 +00008@end
9
10@implementation INTF
Steve Naroff0de21fd2009-02-22 19:35:57 +000011- (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{method '-Meth' not found (return type defaults to 'id')}}
Fariborz Jahanianc5692492007-12-17 21:03:50 +000012@end