macro_rules! runtime_benchmarks_or_fuzz_enabled {
    ($($input:tt)*) => { ... };
}
Expand description

Enable/disable the given code depending on any(feature = "runtime-benchmarks", feature = "fuzzing") being enabled for the crate or not.

Example

// Will add the code depending on the feature being enabled or not.
runtime_benchmarks_or_fuzz_enabled!( println!("Hello") )