Blame test/lintindex.awk

Packit 575503
BEGIN {
Packit 575503
	x = 537
Packit 575503
	y = 3
Packit 575503
	z = index(x, y)	# should print lint warning
Packit 575503
	# now that STRCUR has been trigged on x and y, check that we still
Packit 575503
	# get the warning
Packit 575503
	z = index(x, y)	# should print lint warning
Packit 575503
	if (z != 2)
Packit 575503
		print "oops"
Packit 575503
}