Why can you `stackalloc` into a `Span<T>` safely but you cannot store that same span into a field of a class, and what language feature enforces this?Span<byte> buf = stackalloc byte[256]; // class C { Span<byte> field; } // does not compile