blob: c23187598bceb68e7fe9da987bcd6fce87ac5308 [file] [log] [blame] [edit]
// Regression test for #82792.
//@ run-pass
#[repr(C)]
pub struct Loaf<T: Sized, const N: usize = 1> {
head: [T; N],
slice: [T],
}
fn main() {}