aboutsummaryrefslogtreecommitdiffstats
path: root/test/fnaryscl.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/fnaryscl.awk')
-rw-r--r--test/fnaryscl.awk10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/fnaryscl.awk b/test/fnaryscl.awk
new file mode 100644
index 00000000..b88778ec
--- /dev/null
+++ b/test/fnaryscl.awk
@@ -0,0 +1,10 @@
+BEGIN {
+ foo[1] = 4
+ f1(foo)
+}
+
+function f1(a) { f2(a) }
+
+function f2(b) { f3(b) }
+
+function f3(c) { c = 6 }