shithub: trueawk

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

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

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

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