mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +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.
|