Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
ref11.C
blob: c43c67edf70058112d20f82fe74aafc292a741fd [
file
] [
log
] [
blame
]
// PR c++/83476
int
n
;
template
<
int
&
V
>
struct
A
{};
template
<
int
&
V
>
void
f
(
A
<
V
>);
int
main
()
{
A
<n>
a
;
f
(
a
);
}