freebsd-dev/test/Sema/surpress-deprecated.c
2009-06-02 17:58:47 +00:00

8 lines
187 B
C

// RUN: clang -fsyntax-only -Wno-deprecated-declarations -verify %s
extern void OldFunction() __attribute__((deprecated));
int main (int argc, const char * argv[]) {
OldFunction();
}