shithub: trueawk

ref: b1d9d2818b21df8234d305b91d2c8e21bea78b6b
dir: /bugs-fixed/matchop-deref.awk/

View raw version
function foo() {
	return "aaaaaab"
}

BEGIN { 
	print match(foo(), "b")
}

{
	print match(substr($0, 1), "b")     
}