blob: 765500e10d8130056b50d69e35a08da9e4e75ebf [file] [log] [blame]
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001// RUN: clang -verify %s
2
3@interface FF
4- (void) Meth;
5@end
6
7@protocol P
8@end
9
10@interface INTF<P>
11- (void)IMeth;
12@end
13
14@implementation INTF
15- (void)IMeth {INTF<P> *pi; [pi Meth]; } // expected-warning {{method '-Meth' not found in protocol (return type defaults to 'id')}}
16@end