Fix test to correctly reflect problem
authorMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 29 Apr 1999 13:41:32 +0000 (13:41 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 29 Apr 1999 13:41:32 +0000 (13:41 +0000)
From-SVN: r26695

gcc/testsuite/g++.old-deja/g++.other/static4.C

index 1d5d7b74922ec6d4fc27486d3acbfa28cdffc09e..70213370b0717d30940aed03dbba610c17dd5d62 100644 (file)
@@ -1,8 +1,9 @@
 // Origin: Andrew Pollard <andrew@odie.demon.co.uk>
+// 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); }