diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-01-14 20:55:34 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-01-14 20:55:34 +0200 |
commit | 025970d8638911457947f32a77997a84def214c5 (patch) | |
tree | 12841bb61bb56431f66b89b84baf6d6db3a5759c /test/aryprm9.awk | |
parent | a0ba65cfdc7c534407407a4f50db2b433732efe6 (diff) | |
parent | 89debf61f879b626438f818b08abda4d2874c50f (diff) | |
download | egawk-025970d8638911457947f32a77997a84def214c5.tar.gz egawk-025970d8638911457947f32a77997a84def214c5.tar.bz2 egawk-025970d8638911457947f32a77997a84def214c5.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test/aryprm9.awk')
-rw-r--r-- | test/aryprm9.awk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/aryprm9.awk b/test/aryprm9.awk new file mode 100644 index 00000000..004e3c34 --- /dev/null +++ b/test/aryprm9.awk @@ -0,0 +1,16 @@ +#!/usr/bin/gawk -f +BEGIN { + + for (i = 0; i < 100; i++) + func_exec() +} + +function func_exec(opaque) +{ + func_a(1, opaque) #set additional argument, not expected by fname +} + +function func_a(a, b, loc1, loc2) +{ + b = 0 #unref Nnull_string +} |