hanchenye-llvm-project/clang/test/Sema/surpress-deprecated.c

8 lines
188 B
C

// RUN: %clang -fsyntax-only -Wno-deprecated-declarations -verify %s
extern void OldFunction() __attribute__((deprecated));
int main (int argc, const char * argv[]) {
OldFunction();
}