Blame test/lintexp.awk

Packit Service f629e6
BEGIN {
Packit Service f629e6
	split("0|0a", f, "|")
Packit Service f629e6
	z = exp(f[1])	# no warning, since strnum converted to number
Packit Service f629e6
	x = f[2]+0	# trigger NUMCUR
Packit Service f629e6
	z = exp(f[2])	# should print a warning
Packit Service f629e6
	x = "0"
Packit Service f629e6
	y = x+0		# trigger NUMCUR
Packit Service f629e6
	z = exp(x)	# should print a warning, since x is still a string!
Packit Service f629e6
}