From: Mark Mitchell Date: Thu, 29 Apr 1999 13:41:32 +0000 (+0000) Subject: Fix test to correctly reflect problem X-Git-Tag: prereleases/gcc-2.95-test~705 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8938bb764b8fc64d45b27d2eed9f43783441a0c2;p=thirdparty%2Fgcc.git Fix test to correctly reflect problem From-SVN: r26695 --- diff --git a/gcc/testsuite/g++.old-deja/g++.other/static4.C b/gcc/testsuite/g++.old-deja/g++.other/static4.C index 1d5d7b74922e..70213370b071 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/static4.C +++ b/gcc/testsuite/g++.old-deja/g++.other/static4.C @@ -1,8 +1,9 @@ // Origin: Andrew Pollard +// Special g++ Options: -O struct A { - A(int); + A(int, int); }; -A::A(int) {} -static A _A(0); +A::A(int, int) {} +static A _A(0, 0); int main() { return(0); }