mod fat_array_ptr;
pub mod monitor;
mod thin_array_ptr;
#[derive(Eq, PartialEq)]
pub struct Test {
pub a: usize,
pub b: u8,
pub c: u8,
}
impl Default for Test {
fn default() -> Test {
Self { a: 100, b: 2, c: 2 }
}
}
pub(self) mod prelude {
pub(crate) use super::Test;
pub use crate::prelude::*;
pub(crate) use core::mem;
}