aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/funct1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/funct1.c')
-rw-r--r--test/regression/funct1.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/regression/funct1.c b/test/regression/funct1.c
new file mode 100644
index 00000000..1e26803e
--- /dev/null
+++ b/test/regression/funct1.c
@@ -0,0 +1,8 @@
+int f() { return 0; }
+
+int g(void) { return f(1); }
+
+int h(x, y) int x, y; { return x + y; }
+
+int k(void) { return h(1); }
+