-
Notifications
You must be signed in to change notification settings - Fork 567
Closed
Description
This
type x struct {
x, y int // a
u float32 // b
_ float32 // c
A1 *[]int // ca
FFF func() // adsfasd
X interface { } // adsf
}should be formatted to this:
type x struct {
x, y int // a
u float32 // b
_ float32 // c
A1 *[]int // ca
FFF func() // adsfasd
X interface{} // adsf
}but is formatted like this:
type x struct {
x, y int // a
u float32 // b
_ float32 // c
A1 *[]int // ca
FFF func() // adsfasd
X interface {
} // adsf
}