mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-05 10:48:15 +02:00
6 lines
142 B
Rust
6 lines
142 B
Rust
use displaydoc::Display;
|
|
|
|
#[derive(Display)]
|
|
enum EmptyInside {}
|
|
|
|
static_assertions::assert_impl_all!(EmptyInside: core::fmt::Display);
|