rustc/tests/coverage/auxiliary/macro_name_span_helper.rs
2024-06-04 21:09:03 +02:00

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.