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/fill/fill_struct_input.go

23 lines
323 B
Go

package fill
type Server struct {
Name string
ID int
MyHomeAddress string
SubDomains []string
Empty string
Example int64
Example2 string
Bar struct {
Four string
Five string
}
Lala interface{}
} // eos
// eof
func fillServer() {
sv := Server{}
_ = sv
}