Daniel Dunbar | 80737ad | 2009-12-15 22:01:24 +0000 | [diff] [blame] | 1 | // RUN: %clang -fsyntax-only -Wno-deprecated-declarations -verify %s |
Steve Naroff | cfdee92 | 2009-03-31 17:28:26 +0000 | [diff] [blame] | 2 | extern void OldFunction() __attribute__((deprecated)); |
3 | |||||
4 | int main (int argc, const char * argv[]) { | ||||
5 | OldFunction(); | ||||
6 | } | ||||
7 |