mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 01:17:41 +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;)
|
|
);
|