// RUN: %clang_cc1 -verify -Wno-objc-root-class %s
@interfaceFF- (void)Meth;@end@protocolP@end@interfaceINTF<P>// expected-note {{receiver is instance of class declared here}}
- (void)IMeth;@end@implementationINTF- (void)IMeth{INTF<P>*pi;[pi Meth];}// expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
@end