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