Blame test/paramdup.awk

Packit 575503
BEGIN { foo(0, 1, 2) }
Packit 575503
Packit 575503
function foo(a, b, c, b, a)
Packit 575503
{
Packit 575503
	print "a =", a
Packit 575503
	print "b =", b
Packit 575503
	print "c =", c
Packit 575503
}