mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 19:57:47 +00:00
11 lines
185 B
Rust
11 lines
185 B
Rust
// edition: 2021
|
|
|
|
#[macro_export]
|
|
macro_rules! macro_that_defines_a_function {
|
|
(fn $name:ident () $body:tt) => {
|
|
fn $name () -> () $body
|
|
}
|
|
}
|
|
|
|
// Non-executable comment.
|