bolt/deps/llvm-18.1.8/clang/test/SemaObjC/no-warning-unavail-unimp.m
2025-02-14 19:21:04 +01:00

13 lines
398 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fsyntax-only -verify -Wno-objc-root-class %s
// expected-no-diagnostics
@interface Foo
@property (getter=getVal) int val __attribute__((unavailable));
@property (getter=getVal) int val2 __attribute__((availability(macosx,unavailable)));
- Method __attribute__((unavailable));
+ CMethod __attribute__((unavailable));
@end
@implementation Foo
@end