Closed
Description
With this example put into https://play.golang.org/ (and go1.11), there is no warning. Joining the two strings into 1 results in a warning.
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, playground %d" + "", 5)
}
Some people split long strings, which is where I encountered it.