The following should pass even with symbolic alignment checks: ```rust #![feature(strict_provenance, pointer_is_aligned)] use std::ptr; fn main() { let p = ptr::invalid::<()>(1); assert!(p.is_aligned()); } ``` However, the assertion fails. This is almost certainly caused by https://github.com/rust-lang/rust/pull/102795.