[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Sema / warn-strict-prototypes.cpp
blob6a3839ff93672ab3c0303087660363083431360e
1 // RUN: %clang_cc1 -verify -fsyntax-only -Wstrict-prototypes %s
2 // expected-no-diagnostics
4 void decl();
5 void decl_void(void);
7 void def() {}
8 void def_void(void) {}