+2000-06-05 Jakub Jelinek <jakub@redhat.com>
+ Nathan Sidwell <nathan@codesourcery.com>
+
+ * gcc.c-torture/compile/20000605-1.c: New test.
+
2000-06-03 David Billinghurst <David Billinghurst@riotinto.com.au>
* g77.f-torture/compile/20000601-1.f: New test.
--- /dev/null
+/* Copyright (C) 2000 Free Software Foundation */
+
+/* make sure we don't get confused by various flavours of void */
+
+/* Origin: Jakub Jelinek <jakub@redhat.com>
+ * Joel Sherrill <joel.sherrill@OARcorp.com>
+ */
+
+typedef void foo;
+foo bar(void);
+void baz(void)
+{
+ bar();
+}
+
+void volatile f();
+
+int x()
+{
+ f();
+}
+