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
/
Import
/
call-expr
/
Inputs
/
F.cpp
blob
bd88df99ba41764afb218ae24e5320b33e25dc20
1
namespace
NS
{
2
struct
X
{};
3
void
f
(
X
) {}
4
void
operator
+(
X
,
X
) {}
5
}
// namespace NS
6
void
f
() {
7
NS
::
X x
;
8
f
(
x
);
9
x
+
x
;
10
}