honnef.co/go/tools@v0.4.7/staticcheck/testdata/src/example.com/checkStdlibUsageRegexpFindAll/checkStdlibUsageRegexpFindAll.go (about)

     1  package pkg
     2  
     3  import "regexp"
     4  
     5  func fn() {
     6  	var r *regexp.Regexp
     7  	_ = r.FindAll(nil, 0) //@ diag(`calling a FindAll method with n == 0 will return no results`)
     8  }
     9  
    10  func fn2() {
    11  	regexp.MustCompile("foo(").FindAll(nil, 0) //@ diag(`calling a FindAll`)
    12  }