Sign in
go
/
tools
/
e1e2965795e4255f51639d9a5418448a603b8913
/
.
/
internal
/
lsp
/
testdata
/
suggestedfix
/
has_suggested_fix.go
blob: e06dce0a8461bb449db5d3c0d5019c272f0e10af [
file
] [
log
] [
blame
]
package suggestedfix
import (
"log"
)
func goodbye() {
s := "hiiiiiii"
s = s
//@suggestedfix("s = s", "quickfix")
log.Print(s)
}