Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Regression test for #82792.
//@ run-pass
#[repr(C)]
pub struct Loaf<T: Sized, const N: usize = 1> {
head: [T; N],
slice: [T],
}
fn main() {}