From: Jason Merrill Date: Sat, 28 Aug 2004 16:51:34 +0000 (-0400) Subject: fix thinko X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e71b918c3fd0770387a1cbb53363e3bfd3238e14;p=gcc.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 37513275fa2..f9da8d7f4fd 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)); }