Sign in
fuchsia
/
third_party
/
llvm-project
/
c3fd2a50ba1395b6c2240f6a688c6a1aa975a1fe
/
.
/
clang
/
test
/
Sema
/
warn-strict-prototypes.cpp
blob: 6a3839ff93672ab3c0303087660363083431360e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -verify -fsyntax-only -Wstrict-prototypes %s
// expected-no-diagnostics
void
decl
();
void
decl_void
(
void
);
void
def
()
{}
void
def_void
(
void
)
{}