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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
merge-var-template-def
/
b1.h
blob
35cab9d01c8e501346a0eb6556bb36ef06ee6835
1
#ifndef B1_H
2
#define B1_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
#include
"a.h"
9
#endif