Blame test/ignrcas4.awk

Packit 575503
BEGIN {
Packit 575503
	x = "0"
Packit 575503
	print x+0	# trigger NUMCUR
Packit 575503
	IGNORECASE = x	# should enable ignorecase, since x is a non-null string
Packit 575503
	y = "aBc"
Packit 575503
	print (y ~ /abc/)
Packit 575503
}