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