freebsd-dev/test/Sema/surpress-deprecated.c
2010-01-01 10:34:51 +00:00

8 lines
188 B
C

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