1 2 3 4 5 6 7
pub trait Trait { pub fn nrvo(init: fn()) -> [u8; 4096] { let mut buf = [0; 4096]; buf } }