bolt/deps/llvm-18.1.8/clang/test/SemaObjC/protocol-id-test-2.m
2025-02-14 19:21:04 +01:00

12 lines
288 B
Objective-C

// RUN: %clang_cc1 -verify -Wno-objc-root-class %s
@protocol P
@end
@interface INTF<P>
- (void)IMeth;
@end
@implementation INTF
- (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
@end