]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
new
authorJason Merrill <jason@gcc.gnu.org>
Tue, 7 Mar 2000 08:29:56 +0000 (03:29 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 7 Mar 2000 08:29:56 +0000 (03:29 -0500)
From-SVN: r32377

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

diff --git a/gcc/testsuite/g++.old-deja/g++.other/redecl4.C b/gcc/testsuite/g++.old-deja/g++.other/redecl4.C
new file mode 100644 (file)
index 0000000..958cfdc
--- /dev/null
@@ -0,0 +1,6 @@
+int main() {
+  struct A {
+    void f();
+    void f();                  // ERROR - already declared
+  };
+}