1/// A heap allocation living in an arena.
2///
3/// The allocator slot is fixed to `&'arena A`, so construct it with
4/// [`new_in`](allocator_api2::boxed::Box::new_in) and pass `&arena`.
5pub type Box<'arena, T, A> = allocator_api2::boxed::Box<T, &'arena A>;