Any idea how I can fix this delightful error using talc: ``` error[E0080]: could not evaluate static initializer --> /home/dherse/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ptr/mut_ptr.rs:1044:18 | 1044 | unsafe { intrinsics::offset(self, count) } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ out-of-bounds pointer arithmetic: 0x90000000[noalloc] is a dangling pointer (it has no provenance) | note: inside `core::ptr::mut_ptr::::add` --> /home/dherse/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ptr/mut_ptr.rs:1044:18 | 1044 | unsafe { intrinsics::offset(self, count) } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ note: inside `Span::from_const_slice::` --> /home/dherse/.cargo/registry/src/index.crates.io-6f17d22bba15001f/talc-4.4.1/src/span.rs:175:28 | 175 | acme: unsafe { (slice as *mut T).add(slice.len()).cast() }, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ note: inside `ALLOCATOR` --> src/bin/eth_simple.rs:24:21 | 24 | ClaimOnOom::new(Span::from_const_slice(core::slice::from_raw_parts( | _____________________^ 25 | | 0x90000000 as *mut u8, 26 | | 0x02000000, 27 | | ))) | |______^ ```