cp_error048: C99 ยง6.7.5.3 clause 8: "A declaration of a parameter as ``function retur...
authorChristoph Mallon <christoph.mallon@gmx.de>
Sat, 16 Aug 2008 07:03:31 +0000 (07:03 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sat, 16 Aug 2008 07:03:31 +0000 (07:03 +0000)
[r21211]

parsetest/cp_error048.c [new file with mode: 0644]

diff --git a/parsetest/cp_error048.c b/parsetest/cp_error048.c
new file mode 100644 (file)
index 0000000..0262768
--- /dev/null
@@ -0,0 +1,8 @@
+static void f(void) {}
+static void g(void p(void)) {}
+
+int main(void)
+{
+       g(f);
+       return 0;
+}