Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / checkStdlibUsageRegexpFindAll / checkStdlibUsageRegexpFindAll.go
1 package pkg
2
3 import "regexp"
4
5 func fn() {
6         var r *regexp.Regexp
7         _ = r.FindAll(nil, 0) //want `calling a FindAll method with n == 0 will return no results`
8 }