Files
rust/tests/pretty/macro.rs
2024-02-22 16:04:04 +00:00

8 lines
111 B
Rust

//@ pp-exact
#![feature(decl_macro)]
pub(crate) macro mac { ($arg : expr) => { $arg + $arg } }
fn main() {}