aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/static4.C7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/static4.C b/gcc/testsuite/g++.old-deja/g++.other/static4.C
index 1d5d7b7..7021337 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 <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); }