Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
overload
/
rvalue3.C
blob: 5a5d237429063c279ab291888fa4291ff6ae8f2d [
file
] [
log
] [
blame
]
// PR c++/50512
void
foo
(
const
char
*
const
&
s
);
template
<
typename
C
>
void
foo
(
const
C
&
x
)
{
x
.
a
;
}
void
f
()
{
foo
(
"abc"
);
}