2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash9.C
blob7a568fe054ad1b29ca5740d9c42d4e869b3593fc
1 struct A { };
2 struct B { };
4 A f(const B & b) {
5   return A();
8 template<>
9 B f(const A & a) { // { dg-error "" }
10   return B();