golangci-lint/test/testdata/sloglint_static_msg.go
2023-11-29 18:03:30 +01:00

20 lines
324 B
Go

//go:build go1.21
//golangcitest:args -Esloglint
//golangcitest:config_path testdata/configs/sloglint_static_msg.yml
package testdata
import (
"log/slog"
)
func test() {
slog.Info("msg")
const msg1 = "msg"
slog.Info(msg1)
msg2 := "msg"
slog.Info(msg2) // want `message should be a string literal or a constant`
}