Sha256: ecacc0120aa127dc289d6333348ab357c74d6cb49851de43e7cf3984facf0abc

Contents?: true

Size: 790 Bytes

Versions: 3

Compression:

Stored size: 790 Bytes

Contents

#![cfg_attr(not(feature = "std"), feature(lang_items, start))]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg_attr(not(feature = "std"), start)]
fn start(_argc: isize, _argv: *const *const u8) -> isize {
    0
}
#[lang = "eh_personality"]
#[no_mangle]
#[cfg(not(feature = "std"))]
pub extern "C" fn rust_eh_personality() {}
#[panic_handler]
#[cfg(not(feature = "std"))]
fn panic(_info: &core::panic::PanicInfo) -> ! {
    unsafe {
        libc::abort();
    }
}

use displaydoc::Display;

/// this type is pretty swell
#[derive(Display)]
#[ignore_extra_doc_attributes]
enum TestType {
    /// This one is okay
    Variant1,

    /// Multi
    /// line
    /// doc.
    Variant2,
}

static_assertions::assert_impl_all!(TestType: core::fmt::Display);

#[cfg(feature = "std")]
fn main() {}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/displaydoc-0.2.5/tests/std/multi_line_allow.rs
wasmtime-28.0.0 ./ext/cargo-vendor/displaydoc-0.2.5/tests/std/multi_line_allow.rs
wasmtime-27.0.0 ./ext/cargo-vendor/displaydoc-0.2.5/tests/std/multi_line_allow.rs