Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
Sema
/
surpress-deprecated.c
blob: db9ab3f4eeb65bb73fdf3ee98e16a36905c7fedf [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -Wno-deprecated-declarations -verify %s
// expected-no-diagnostics
extern
void
OldFunction
()
__attribute__
((
deprecated
));
int
main
(
int
argc
,
const
char
*
argv
[])
{
OldFunction
();
}