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