I tried this code: ```rust #![feature(offset_of)] use std::fmt::Debug; fn main() { core::mem::offset_of!((u8, dyn Debug), 1); } ``` I expected the compilation to fail since the offset cannot be statically determined. Instead, the compilation succeeds.