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