diff options
Diffstat (limited to 'test/arrayparm.awk')
-rw-r--r-- | test/arrayparm.awk | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/arrayparm.awk b/test/arrayparm.awk new file mode 100644 index 00000000..d6f34d96 --- /dev/null +++ b/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; +} |