aboutsummaryrefslogtreecommitdiffstats
path: root/test/paramdup.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/paramdup.awk')
-rw-r--r--test/paramdup.awk8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/paramdup.awk b/test/paramdup.awk
new file mode 100644
index 00000000..1f1cc7a4
--- /dev/null
+++ b/test/paramdup.awk
@@ -0,0 +1,8 @@
+BEGIN { foo(0, 1, 2) }
+
+function foo(a, b, c, b, a)
+{
+ print "a =", a
+ print "b =", b
+ print "c =", c
+}