From fca4da6bd288fa7484535c5a8614e22fc32c5cc3 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Fri, 5 Mar 2021 17:25:57 -0500 Subject: [PATCH] Add 82792 Issue: rust-lang/rust#82792 --- ices/82792.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ices/82792.rs diff --git a/ices/82792.rs b/ices/82792.rs new file mode 100644 index 00000000..56cd35db --- /dev/null +++ b/ices/82792.rs @@ -0,0 +1,8 @@ +#![crate_type = "lib"] +#![feature(const_generics_defaults)] + +#[repr(C)] +pub struct Loaf { + head: [T; N], + slice: [T], +}