github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/sloglint_static_msg.go (about) 1 //go:build go1.21 2 3 //golangcitest:args -Esloglint 4 //golangcitest:config_path testdata/configs/sloglint_static_msg.yml 5 package testdata 6 7 import ( 8 "log/slog" 9 ) 10 11 func test() { 12 slog.Info("msg") 13 14 const msg1 = "msg" 15 slog.Info(msg1) 16 17 msg2 := "msg" 18 slog.Info(msg2) // want `message should be a string literal or a constant` 19 }