Blame test/typeof2.awk

Packit 575503
BEGIN {
Packit 575503
	print typeof(x)
Packit 575503
	x[1] = 3
Packit 575503
	print typeof(x)
Packit 575503
}
Packit 575503
Packit 575503
function test1() {
Packit 575503
}
Packit 575503
Packit 575503
function test2(p) {
Packit 575503
	p[1] = 1
Packit 575503
}
Packit 575503
Packit 575503
BEGIN {
Packit 575503
	print typeof(a)
Packit 575503
	test1(a)
Packit 575503
	print typeof(a)
Packit 575503
	test2(a)
Packit 575503
	print typeof(a)
Packit 575503
}