Blame test/arrayref.awk

Packit 575503
	BEGIN { # foo[10] = 0		# put this line in and it will work
Packit 575503
		test(foo); print foo[1]
Packit 575503
		test2(foo2); print foo2[1]
Packit 575503
	}
Packit 575503
Packit 575503
	function test(foo)
Packit 575503
	{
Packit 575503
		test2(foo)
Packit 575503
	}
Packit 575503
	function test2(bar)
Packit 575503
	{
Packit 575503
		bar[1] = 1
Packit 575503
	}