1
0
mirror of https://github.com/golang/go synced 2024-10-01 16:28:33 -06: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)
}