//@ known-bug: rust-lang/rust#125680 //@ edition:2021 #![feature(generic_const_exprs)] use core::fmt::Debug; struct Inline where [(); std::mem::offset_of!((T,), 0)]:, {} fn main() { let dst = Inline::::new(0); // BANG! }