From: Jason Merrill Date: Sat, 28 Aug 2004 16:51:34 +0000 (-0400) Subject: fix thinko X-Git-Tag: releases/gcc-4.0.0~5465 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e71b918c3fd0770387a1cbb53363e3bfd3238e14;p=thirdparty%2Fgcc.git fix thinko From-SVN: r86694 --- diff --git a/gcc/testsuite/g++.dg/eh/throw2.C b/gcc/testsuite/g++.dg/eh/throw2.C index 37513275fa20..f9da8d7f4fdc 100644 --- a/gcc/testsuite/g++.dg/eh/throw2.C +++ b/gcc/testsuite/g++.dg/eh/throw2.C @@ -2,7 +2,7 @@ struct A { A(int); }; -void f() +void f(int t) { throw (3,A(t)); }