Skip to content

Instantly share code, notes, and snippets.

@romanitalian
Created February 13, 2021 14:13
Show Gist options
  • Save romanitalian/dc30e5223267e385d3bc47faf72ab8ed to your computer and use it in GitHub Desktop.
Save romanitalian/dc30e5223267e385d3bc47faf72ab8ed to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"unsafe"
)
type Foo struct {
}
func main() {
x := &Foo{}
y := Foo{}
fmt.Println(unsafe.Sizeof(x)) // 8
fmt.Println(unsafe.Sizeof(y)) // 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment