[NFC][RISCV] Remove CFIIndex argument from allocateStack (#117871)
[llvm-project.git] / clang / test / SemaObjC / no-warning-unavail-unimp.m
bloba099bdd67976834bce627622b9dda8767633ee1b
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
4 @interface Foo
5 @property (getter=getVal) int val __attribute__((unavailable));
6 @property (getter=getVal) int val2 __attribute__((availability(macosx,unavailable)));
7 - Method __attribute__((unavailable));
8 + CMethod __attribute__((unavailable));
9 @end
11 @implementation Foo
12 @end