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