displaydoc 0.1.7

A derive macro for implementing the display Trait via a doc comment and string interpolation
Documentation
#[allow(unused_attributes)]
#[rustversion::attr(not(nightly), ignore)]
#[test]
fn no_std() {
    let t = trybuild::TestCases::new();
    #[cfg(not(feature = "std"))]
    t.compile_fail("tests/no_std/without.rs");
    #[cfg(feature = "std")]
    t.compile_fail("tests/std/without.rs");
    #[cfg(feature = "std")]
    t.pass("tests/std/multiple.rs");
    t.pass("tests/no_std/with.rs");
}