You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go.nvim/lua/tests/fixtures/fmt/goimports3_golden.go

13 lines
142 B
Go

package main
import (
"fmt"
"time"
)
func foo() {
fmt.Println("go.nvim")
time.Date(2020, 1, 1, 1, 1, 1, 1, nil)
fmt.Println("hello")
}