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
/
Modules
/
Inputs
/
merge-dependent-friends
/
c.h
blob
3620ce3d539f908e81d2a0599d1a4488f03e89cc
1
namespace
N
{
template
<
typename T
>
struct
A
{
friend
int
f
(
A
); }; }
2
// It would seem like this variable should be called 'c'.
3
// But that makes the original problem disappear...
4
int
e
=
f
(
N
::
A
<
int
>());
5
#include
"a.h"
6
#include
"b.h"