github.com/powerman/golang-tools@v0.1.11-0.20220410185822-5ad214d8d803/internal/lsp/testdata/missingfunction/tuple.go (about)

     1  package missingfunction
     2  
     3  func tuple() {
     4  	undefinedTuple(b()) //@suggestedfix("undefinedTuple", "quickfix")
     5  }
     6  
     7  func b() (string, error) {
     8  	return "", nil
     9  }