xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/paramdup.awk (revision 3ee4fc2aa6b5136515cc3eed32d3c6ef33e37471)
1*3ee4fc2aSCody Peter MelloBEGIN { foo(0, 1, 2) }
2*3ee4fc2aSCody Peter Mello
3*3ee4fc2aSCody Peter Mellofunction foo(a, b, c, b, a)
4*3ee4fc2aSCody Peter Mello{
5*3ee4fc2aSCody Peter Mello	print "a =", a
6*3ee4fc2aSCody Peter Mello	print "b =", b
7*3ee4fc2aSCody Peter Mello	print "c =", c
8*3ee4fc2aSCody Peter Mello}
9