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 / CheckSillyRegexp.disabled / CheckSillyRegexp.go
1 package pkg
2
3 import "regexp"
4
5 func fn() {
6         regexp.Compile("")          // MATCH "does not contain any meta characters"
7         regexp.Compile("abc")       // MATCH "does not contain any meta characters"
8         regexp.Compile("abc\\.def") // MATCH "does not contain any meta characters"
9         regexp.Compile("abc.def")
10         regexp.Compile("(abc)")
11 }