1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#![feature(allocator_api)]
#![feature(const_trait_impl)]
#![feature(never_type)]
#![feature(nonnull_slice_from_raw_parts)]
#![feature(slice_ptr_get)]
#![no_std]
extern crate alloc as alloc_crate;
mod base;
pub use base::*;
mod global;
pub use global::*;
mod impossible;
pub use impossible::*;
mod non_working;
pub use non_working::*;
mod stacked;
pub use stacked::*;