//! Construct `StaticStorage`/`DynamicStorage` and inspect them through the `Storage` trait.
//!//! Run with: `cargo run --example storage` (static only), or
//! `cargo run --example storage --features alloc` (static and dynamic)
modr#static;#[cfg(feature ="alloc")]moddynamic;fnmain(){
r#static::run();#[cfg(feature ="alloc")]dynamic::run();}