blob: fdc2e1f7a2836d9ba38a1c2d9eb22f79fe2421e7 [file] [log] [blame]
//! Shows a user-friendly compiler error on incompatible selected features.
#[allow(unused_macros)]
macro_rules! hide_from_rustfmt {
($mod:item) => {
$mod
};
}
#[cfg(not(feature = "alloc"))]
hide_from_rustfmt! {
mod error;
}