huawei/
nil.rs

1#[rustfmt::skip]
2macro_rules! nil {
3    () => { () };
4}
5
6pub type Nil = nil!();
7
8pub const NIL: Nil = nil!();