mirror of
https://github.com/ziglang/zig.git
synced 2026-02-02 04:33:37 +00:00
Constant-folding the pointers to the expected sentinel value have some big problems: it hides the real content of the array, makes the pointer to the sentinel point to a completely different memory region and treats it like a const value even when the underlying array is mutable. Fixes #4840