repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
Sema
/
warn-strict-prototypes.cpp
blob
6a3839ff93672ab3c0303087660363083431360e
1
// RUN: %clang_cc1 -verify -fsyntax-only -Wstrict-prototypes %s
2
// expected-no-diagnostics
3
4
void
decl
();
5
void
decl_void
(
void
);
6
7
void
def
() {}
8
void
def_void
(
void
) {}