brintos

brintos / llvm-project-archived public Read only

0
0
Text · 288 B · 4c1befb Raw
13 lines · plain
1// RUN: %clang_cc1 -verify -Wno-objc-root-class %s2 3@protocol P4@end5 6@interface INTF<P>7- (void)IMeth;8@end9 10@implementation INTF11- (void)IMeth { [(id<P>)self Meth]; }  // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}12@end13