shithub: trueawk

ref: 04b13ebe5fa6b4cc6d22cc84b40ea042d5ab6215
dir: /bugs-fixed/matchop-deref.awk/

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

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

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