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
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
vararg-default-arg.cpp
blob
27c2bbbf5b8eeb2da393b368cfde8c323635e389
1
// RUN: %clang_cc1 %s -verify -fsyntax-only
2
// expected-no-diagnostics
3
// PR5462
4
5
void
f1
(
void
);
6
void
f2
(
const char
* =
__null
, ...);
7
8
void
f1
(
void
)
9
{
10
f2
();
11
}