summaryrefslogtreecommitdiffstats
path: root/test/Sema/surpress-deprecated.c
blob: 78faf22328a43ba10b1290f366010228f534a022 (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