all repos

gopher.nvim @ 27ba078f14dd39fcd5e8a57d7009cdd77450ebbb

Minimalistic plugin for Go development

gopher.nvim/spec/fixtures/impl/struct_output.go(view raw)

1
2
3
4
5
6
7
8
9
10
package main

type StructTest2 struct {
	someField  int
	otherField string
}

func (s *StructTest2) Write(p []byte) (n int, err error) {
	panic("not implemented") // TODO: Implement
}