var G int
func ABC(i, j int) int
This type and the following one will share the same GC shape and size.
type Pointery struct {
// contains filtered or unexported fields
}
type Pointery2 struct {
// contains filtered or unexported fields
}
type Single struct {
// contains filtered or unexported fields
}
This type and the following one will have the same size.
type Vanilla struct {
// contains filtered or unexported fields
}
type Vanilla2 struct {
// contains filtered or unexported fields
}