aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/funct2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/funct2.c')
-rw-r--r--test/regression/funct2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/regression/funct2.c b/test/regression/funct2.c
new file mode 100644
index 00000000..6b648c75
--- /dev/null
+++ b/test/regression/funct2.c
@@ -0,0 +1,4 @@
+extern int f(int x);
+
+double g(int x) { return 3.14 * f(x); }
+