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] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
template-default-args
/
d.h
blob
07ececc1f41d4215abf1d6621968b3e109f7f4bc
1
BEGIN
2
template
<
typename T
=
void
>
struct
L
;
3
struct
FriendL
{
4
template
<
typename T
>
friend
struct
L
;
5
};
6
END
7
8
namespace
DeferredLookup
{
9
namespace
Indirect
{
10
template
<
typename
,
bool
=
true
>
struct
A
{};
11
template
<
typename
>
struct
B
{
template
<
typename T
>
using
C
=
A
<
T
>; };
12
}
13
}