New failing test
authorMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 29 Apr 1999 09:46:12 +0000 (09:46 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 29 Apr 1999 09:46:12 +0000 (09:46 +0000)
From-SVN: r26693

gcc/testsuite/g++.old-deja/g++.other/static4.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.old-deja/g++.other/static4.C b/gcc/testsuite/g++.old-deja/g++.other/static4.C
new file mode 100644 (file)
index 0000000..1d5d7b7
--- /dev/null
@@ -0,0 +1,8 @@
+// Origin: Andrew Pollard <andrew@odie.demon.co.uk>
+
+struct A {
+        A(int);
+};
+A::A(int) {}
+static A _A(0);
+int main() { return(0); }