The code that caused the error:

Why nil ?
This should be the right result:

Sample code:
`package main
import (
"fmt"
"github.com/dlclark/regexp2"
)
func main() {
r, err := regexp2.Compile(`(?<=1234\.\*56).*(?=890)`, regexp2.Compiled)
if err != nil {
panic(err)
}
m, err := r.FindStringMatch(`1234.*567890`)
if err != nil {
panic(err)
}
fmt.Println(m)
}`