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
[libc] Deprecate LLVM_ENABLE_PROJECTS in favor of LLVM_ENABLE_RUNTIMES. (#117265)
[llvm-project.git]
/
clang
/
test
/
CXX
/
dcl.decl
/
dcl.meaning
/
dcl.fct.default
/
p2.cpp
blob
68aabca71eac681f6a3f5336991264467d3c9570
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
void
point
(
int
=
3
,
int
=
4
);
5
6
void
test_point
() {
7
point
(
1
,
2
);
8
point
(
1
);
9
point
();
10
}