shithub: trueawk

ref: 829f5258e66609a91efebe72e18d7cd5e80987f9
dir: /bugs-fixed/matchop-deref.awk/

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

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

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