xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/paramdup.awk (revision 1a10a9077a9effc574b7f797a4d321dd0cea4197)
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