Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
g++.dg
/
template
/
init10.C
blob: 1480622d3651700071c0c358725f28d06b13eea4 [
file
]
template
<
int
N
>
struct
A
{
};
template
<
int
Q
>
void
g
()
{
const
int
M
(
Q
);
A
<
M
>
a
;
}
void
h
()
{
g
<
3
>();
}