xref: /freebsd/contrib/one-true-awk/bugs-fixed/matchop-deref.awk (revision f32a6403d34654ac6e61182d09abb5e85850e1ee)
1*f32a6403SWarner Loshfunction foo() {
2*f32a6403SWarner Losh	return "aaaaaab"
3*f32a6403SWarner Losh}
4*f32a6403SWarner Losh
5*f32a6403SWarner LoshBEGIN {
6*f32a6403SWarner Losh	print match(foo(), "b")
7*f32a6403SWarner Losh}
8*f32a6403SWarner Losh
9*f32a6403SWarner Losh{
10*f32a6403SWarner Losh	print match(substr($0, 1), "b")
11*f32a6403SWarner Losh}
12