github.com/golangci/go-tools@v0.0.0-20190318060251-af6baa5dc196/staticcheck/testdata/src/CheckStringsReplaceZero/CheckStringsReplaceZero.go (about)

     1  package pkg
     2  
     3  import "strings"
     4  
     5  func fn() {
     6  	_ = strings.Replace("", "", "", 0) // MATCH /calling strings.Replace with n == 0/
     7  	_ = strings.Replace("", "", "", -1)
     8  	_ = strings.Replace("", "", "", 1)
     9  }