shithub: trueawk

ref: 8da361bb89c76cf969d6c85f4364cb84475938cc
dir: /bugs-fixed/matchop-deref.awk/

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

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

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