aboutsummaryrefslogtreecommitdiff
path: root/bugs-fixed/matchop-deref.awk
blob: 6c066aad911db307d95c6bc9c617c308e9c0d2e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
function foo() {
	return "aaaaaab"
}

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

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