31 lines
615 B
Go
31 lines
615 B
Go
package testdata
|
|
|
|
import "fmt"
|
|
|
|
func GoconstA() { // nolint:dupl
|
|
a := "needconst" // ERROR "string `needconst` has 5 occurrences, make it a constant"
|
|
fmt.Print(a)
|
|
b := "needconst"
|
|
fmt.Print(b)
|
|
c := "needconst"
|
|
fmt.Print(c)
|
|
}
|
|
|
|
func GoconstB() {
|
|
a := "needconst"
|
|
fmt.Print(a)
|
|
b := "needconst"
|
|
fmt.Print(b)
|
|
}
|
|
|
|
const AlreadyHasConst = "alreadyhasconst"
|
|
|
|
func GoconstC() { // nolint:dupl
|
|
a := "alreadyhasconst" // ERROR "string `alreadyhasconst` has 3 occurrences, but such constant `AlreadyHasConst` already exists"
|
|
fmt.Print(a)
|
|
b := "alreadyhasconst"
|
|
fmt.Print(b)
|
|
c := "alreadyhasconst"
|
|
fmt.Print(c)
|
|
}
|