From: Jason Merrill Date: Wed, 28 Oct 1998 11:44:23 +0000 (-0500) Subject: new X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41cdcc108702a4e89e807271204c8fbe8b92cddb;p=gcc.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 00000000000..433f0b193e3 --- /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(); +}