Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
init10.C
blob: 1480622d3651700071c0c358725f28d06b13eea4 [
file
] [
log
] [
blame
]
template
<
int
N
>
struct
A
{
};
template
<
int
Q
>
void
g
()
{
const
int
M
(
Q
);
A
<
M
>
a
;
}
void
h
()
{
g
<
3
>();
}