From: Jason Merrill Date: Wed, 28 Oct 1998 11:44:23 +0000 (-0500) Subject: new X-Git-Tag: prereleases/libgcj-0.1~2268 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41cdcc108702a4e89e807271204c8fbe8b92cddb;p=thirdparty%2Fgcc.git new From-SVN: r23401 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit75.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit75.C new file mode 100644 index 000000000000..433f0b193e39 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/explicit75.C @@ -0,0 +1,11 @@ +// Test for not complaining about mismatches during unification. +// Build don't link: + +template void f(); +template void f(); +extern void g(double); + +void h () +{ + f(); +}