//@ known-bug: #114663 //@ edition:2021 #![feature(generic_const_exprs)] use core::fmt::Debug; struct Inline where [u8; ::core::mem::size_of::() + 1]:, { _phantom: PhantomData, } fn main() { let dst = Inline::::new(0); // BANG! }