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-var-template-def
/
a.h
blob
6b414b3031fb74a3d40fc09466abcd3557909dcc
1
#ifndef A_H
2
#define A_H
3
template
<
typename T
,
T v
>
4
struct
S
{
static
constexpr
T value
=
v
; };
5
template
<
typename T
,
T v
>
6
constexpr
T S
<
T
,
v
>::
value
;
7
8
#endif