shithub: trueawk

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

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

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

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