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