xref: /aosp_15_r20/external/one-true-awk/bugs-fixed/matchop-deref.awk (revision 9a7741de182b2776d7b30d6355f2585c0780a51b)
1function foo() {
2	return "aaaaaab"
3}
4
5BEGIN {
6	print match(foo(), "b")
7}
8
9{
10	print match(substr($0, 1), "b")
11}
12