shithub: trueawk

ref: 3c2e168a8f794ed61c93131b05fb998d79d155df
dir: /bugs-fixed/matchop-deref.awk/

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

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

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