From 3d6ed3ef45722af4d8a53928ac429a4a95c774ed Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Tue, 1 Sep 1998 10:03:49 +0000 Subject: [PATCH] Fix typo From-SVN: r22157 --- gcc/testsuite/g++.old-deja/g++.pt/crash24.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash24.C b/gcc/testsuite/g++.old-deja/g++.pt/crash24.C index 442ab59830c..9c31af6017f 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/crash24.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/crash24.C @@ -1,11 +1,11 @@ // Build don't link: template class U> void template_fn (T); -template void callme ( void (*)(T)); +template void callme ( void (*)(T)); template struct S1; int main() { - callme( template_fn); // ERROR - no matching function + callme(&template_fn); } -- 2.30.2