github.com/powerman/golang-tools@v0.1.11-0.20220410185822-5ad214d8d803/internal/lsp/testdata/suggestedfix/has_suggested_fix.go (about) 1 package suggestedfix 2 3 import ( 4 "log" 5 ) 6 7 func goodbye() { 8 s := "hiiiiiii" 9 s = s //@suggestedfix("s = s", "quickfix") 10 log.Print(s) 11 }