aboutsummaryrefslogtreecommitdiffstats
path: root/test/fnarray.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/fnarray.awk')
-rw-r--r--test/fnarray.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/fnarray.awk b/test/fnarray.awk
new file mode 100644
index 00000000..92a18b98
--- /dev/null
+++ b/test/fnarray.awk
@@ -0,0 +1,7 @@
+function foo(N) {
+ return 0
+}
+BEGIN {
+ Num = foo[c]
+}
+