go-consistent icon indicating copy to clipboard operation
go-consistent copied to clipboard

Multiple declarations

Open cristaloleg opened this issue 6 years ago • 0 comments

(a)
type (
	A struct {
		...
	}
	B struct {
		...
	}
)

(b)
type A struct {
	...
}

type B struct {
	...
}

and the same for var & const, maybe.

cristaloleg avatar Sep 14 '18 07:09 cristaloleg