aboutsummaryrefslogtreecommitdiffstats
path: root/test/aryprm6.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/aryprm6.awk')
-rw-r--r--test/aryprm6.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/aryprm6.awk b/test/aryprm6.awk
new file mode 100644
index 00000000..b12b2782
--- /dev/null
+++ b/test/aryprm6.awk
@@ -0,0 +1,7 @@
+function f(x){
+ a
+ x[1] = 3
+}
+BEGIN {
+ f(a)
+}