2012-04-07 02:12:22 +08:00
|
|
|
// RUN: %clang_cc1 -verify -Wno-objc-root-class %s
|
2007-12-18 05:03:50 +08:00
|
|
|
|
|
|
|
@interface FF
|
|
|
|
- (void) Meth;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P
|
|
|
|
@end
|
|
|
|
|
2013-05-15 23:27:35 +08:00
|
|
|
@interface INTF<P> // expected-note {{receiver is instance of class declared here}}
|
2007-12-18 05:03:50 +08:00
|
|
|
- (void)IMeth;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation INTF
|
2013-06-18 23:31:36 +08:00
|
|
|
- (void)IMeth {INTF<P> *pi; [pi Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
|
2007-12-18 05:03:50 +08:00
|
|
|
@end
|