aboutsummaryrefslogtreecommitdiffstats
path: root/test/callparam.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/callparam.awk')
-rw-r--r--test/callparam.awk6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/callparam.awk b/test/callparam.awk
new file mode 100644
index 00000000..b925db01
--- /dev/null
+++ b/test/callparam.awk
@@ -0,0 +1,6 @@
+BEGIN { f() }
+
+function f( a, b)
+{
+ a = b()
+}