blob: 3b4adcfb5b6f176da29d7e8949c08659326dd8d4 [file] [log] [blame]
// RUN: clang -verify %s
@protocol P
@end
@interface INTF<P>
- (void)IMeth;
@end
@implementation INTF
- (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{method '-Meth' not found (return type defaults to 'id')}}
@end