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