blob: 2366f7326550a65f690e81c224d5887aa868a97f [file] [log] [blame]
Patrick Beardb2f68202012-04-06 18:12:22 +00001// RUN: %clang_cc1 -verify -Wno-objc-root-class %s
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002
3@interface FF
4- (void) Meth;
5@end
6
7@protocol P
8@end
9
Fariborz Jahanian14040142013-05-15 15:27:35 +000010@interface INTF<P> // expected-note {{receiver is instance of class declared here}}
Fariborz Jahanianc5692492007-12-17 21:03:50 +000011- (void)IMeth;
12@end
13
14@implementation INTF
Fariborz Jahanian419245e2013-06-18 15:31:36 +000015- (void)IMeth {INTF<P> *pi; [pi Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
Fariborz Jahanianc5692492007-12-17 21:03:50 +000016@end