Sign in
go
/
tools
/
d996daab27e3978591361e93470ee32ca6b6d6df
/
.
/
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)
}