golangci-lint/test/testdata/goconst_calls_enabled.go
2022-07-15 15:32:10 +02:00

18 lines
364 B
Go

//golangcitest:args -Egoconst
//golangcitest:config linters-settings.goconst.ignore-calls=false
package testdata
import "fmt"
const FooBar = "foobar"
func Baz() {
a := "foobar" // ERROR "string `foobar` has 4 occurrences, but such constant `FooBar` already exists"
fmt.Print(a)
b := "foobar"
fmt.Print(b)
c := "foobar"
fmt.Print(c)
fmt.Print("foobar")
}