shithub: trueawk

ref: 1ced7968ec649e8726ae82bfc98d71a92f11dcae
dir: /bugs-fixed/matchop-deref.awk/

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

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

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