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();
}