Steve Naroff | cfdee92 | 2009-03-31 17:28:26 +0000 | [diff] [blame] | 1 | // RUN: clang -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 |