1
0
mirror of https://github.com/golang/go synced 2024-11-19 06:34:42 -07:00
go/internal/lsp/testdata/imports/add_import.go.golden

14 lines
135 B
Plaintext
Raw Normal View History

-- goimports --
package imports //@import("package")
import (
"bytes"
"fmt"
)
func _() {
fmt.Println("")
bytes.NewBuffer(nil)
}