xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/paramdup.awk (revision d6beba26494f4877120c99b5931876f56ba5dee5)
1BEGIN { foo(0, 1, 2) }
2
3function foo(a, b, c, b, a)
4{
5	print "a =", a
6	print "b =", b
7	print "c =", c
8}
9