--- a
+++ b/test/func-call.c
@@ -0,0 +1,7 @@
+int f1(const char* __s) ;
+static int f2() {
+	return f1("test");
+}
+static int f3(int i) {
+	return f1("test");
+}