mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
7 lines
188 B
C
7 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();
|
|
}
|
|
|