Files
2026-08-01 16:11:49 +03:00

9 lines
155 B
Rust

use displaydoc::Display;
/// this type is pretty swell
struct FakeType;
static_assertions::assert_impl_all!(FakeType: core::fmt::Display);
fn main() {}