On a 64-bit platform, what does the `data` word of an `interface{}` (eface) hold when you assign a plain `int` value to it, and why does the assignment typically allocate?var x interface{} var n int = 42 x = n