summaryrefslogtreecommitdiffstats
path: root/test/Sema/surpress-deprecated.c
blob: 8dbe9dd36581370854e1667a9884329cb8445132 (plain)
1
2
3
4
5
6
7
// RUN: clang -fsyntax-only -Wno-deprecated-declarations -verify %s
extern void OldFunction() __attribute__((deprecated));

int main (int argc, const char * argv[]) {
  OldFunction();
}

OpenPOWER on IntegriCloud