summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/arrayparm.awk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/awk/test/arrayparm.awk')
-rw-r--r--contrib/awk/test/arrayparm.awk21
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/awk/test/arrayparm.awk b/contrib/awk/test/arrayparm.awk
new file mode 100644
index 0000000..d6f34d9
--- /dev/null
+++ b/contrib/awk/test/arrayparm.awk
@@ -0,0 +1,21 @@
+#
+# Test program from:
+#
+# Date: Tue, 21 Feb 95 16:09:29 EST
+# From: emory!blackhawk.com!aaron (Aaron Sosnick)
+#
+BEGIN {
+ foo[1]=1;
+ foo[2]=2;
+ bug1(foo);
+}
+function bug1(i) {
+ for (i in foo) {
+ bug2(i);
+ delete foo[i];
+ print i,1,bot[1];
+ }
+}
+function bug2(arg) {
+ bot[arg]=arg;
+}
OpenPOWER on IntegriCloud