aboutsummaryrefslogtreecommitdiffstats
path: root/test/callparam.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-01-30 10:11:59 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-01-30 10:11:59 +0200
commit86cd3e2cb5117c5800997d3bb363b6d5470be3ce (patch)
treeaa8c2af3fe3006e0e40186792e85a161020df66f /test/callparam.awk
parent2fc1e9855f7983fb75a7f72d3ec97eec467e4709 (diff)
parent1bd1b885c7dd16b5e4ab78c040312f6f7d742784 (diff)
downloadegawk-86cd3e2cb5117c5800997d3bb363b6d5470be3ce.tar.gz
egawk-86cd3e2cb5117c5800997d3bb363b6d5470be3ce.tar.bz2
egawk-86cd3e2cb5117c5800997d3bb363b6d5470be3ce.zip
Merge branch 'gawk-4.1-stable'
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()
+}