mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-20 00:15:51 +00:00
5 lines
97 B
Rust
5 lines
97 B
Rust
#[macro_export]
|
|
macro_rules! make_item (
|
|
($name: ident) => (pub const $name: usize = 42;)
|
|
);
|