Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
      2 extern void OldFunction() __attribute__((deprecated));
      3 
      4 int main (int argc, const char * argv[]) {
      5   OldFunction();
      6 }
      7 
      8