9 lines · c
1// RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s2// expected-no-diagnostics3extern void OldFunction(void) __attribute__((deprecated));4 5int main (int argc, const char * argv[]) {6 OldFunction();7}8 9 1// RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s2// expected-no-diagnostics3extern void OldFunction(void) __attribute__((deprecated));4 5int main (int argc, const char * argv[]) {6 OldFunction();7}8 9