github.com/jd-ly/tools@v0.5.7/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  }