bolt/deps/llvm-18.1.8/clang/test/SemaObjC/warn-category-method-deprecated.m
2025-02-14 19:21:04 +01:00

16 lines
334 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -Wno-objc-root-class -verify %s
@protocol P
- (void)meth;
@end
@interface I <P>
@end
@interface I(cat)
- (void)meth __attribute__((deprecated)); // expected-note {{'meth' has been explicitly marked deprecated here}}
@end
void foo(I *i) {
[i meth]; // expected-warning {{'meth' is deprecated}}
}