shithub: trueawk

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

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

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

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