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