I understood the JS version of this problem, but to see it happen with an address-of operator is just weird. In C if I took the address of a function scoped / temporary variable and kept it around it would be very bad.
I guess taking the address "promoted" the shared variable to enable it to survive past the function?
Said differently: Go puts variables on the stack only when the compiler can prove no references escape the stack frame. Stack is purely an optimization.
The subtle difference between the two ways of communicating the design: There are cases where the reference does not escape, but the compiler doesn't know how to prove that. So saying "if it escapes it's boxed" is subtly wrong.
The default is heap, and only when the compiler can be sure it's safe, things go on the stack.
I guess taking the address "promoted" the shared variable to enable it to survive past the function?