neoneo-go/pkg/vm/tests/bar/bar.go
Roman Khimov a9b9c9226d *: add/fix godoc comments to satisfy golint
Fixes things like:
 * exported type/method/function X should have comment or be unexported
 * comment on exported type/method/function X should be of the form "X ..."
   (with optional leading article)

Refs. #213.
2019-09-03 17:57:51 +03:00

9 lines
135 B
Go

package bar
// Bar is something used for testing purposes (TODO: move somewhere?)
type Bar struct {
X int
Y int
Z string
B bool
}