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