1#![feature(no_core)] 2#![no_core] 3 4// See rustc-std-workspace-core for why this crate is needed. 5 6// Rename the crate to avoid conflicting with the alloc module in alloc. 7extern crate alloc as foo; 8 9pub use foo::*;