brintos

brintos / llvm-project-archived public Read only

0
0
Text · 223 B · 5b764af Raw
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