Blame test/ignrcas4.awk

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