Sign in
go
/
tools
/
3af9f3e163a51c7abf3213b809bf984913ca4e15
/
.
/
internal
/
lsp
/
testdata
/
suggestedfix
/
has_suggested_fix.go
blob: 9ade6741087c7ec2d0eab1a002efdb7eaf8872e5 [
file
] [
log
] [
blame
]
package suggestedfix
import (
"log"
)
func goodbye() {
s := "hiiiiiii"
s = s
//@suggestedfix("s = s")
log.Printf(s)
}