Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash9.C
blob: 7a568fe054ad1b29ca5740d9c42d4e869b3593fc [
file
] [
log
] [
blame
]
struct
A
{
};
struct
B
{
};
A f
(
const
B
&
b
)
{
return
A
();
}
template
<>
B f
(
const
A
&
a
)
{
// { dg-error "" }
return
B
();
}