1 2 3 4 5 6
#[macro_use] extern crate fill_array; const SIZE: usize = 5; pub fn main() { core::array::from_fn::<_, SIZE, _>(|_| Vec::new()) }