blob: ff1e4a9fca1d79605c619f849830ea46ab66f888 [file] [log] [blame]
//@ edition: 2021
#[macro_export]
macro_rules! macro_that_defines_a_function {
(fn $name:ident () $body:tt) => {
fn $name () -> () $body
}
}
// Non-executable comment.