go-consistent
go-consistent copied to clipboard
Multiple declarations
(a)
type (
A struct {
...
}
B struct {
...
}
)
(b)
type A struct {
...
}
type B struct {
...
}
and the same for var
& const
, maybe.