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][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CXX
/
basic
/
basic.lookup
/
basic.lookup.unqual
/
p11.cpp
blob
a1cf529741b9da807d7fb63ad427f1ffdebecf15
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
static const int
a
=
10
;
4
5
void
f0
(
int
a
,
6
int
b
=
a
) {
// expected-error {{default argument references parameter 'a'}}
7
}
8
9
template
<
int
a
,
10
int
b
=
a
>
11
class
A
{
12
};