rust/tests/pretty/macro.rs

8 lines
110 B
Rust
Raw Normal View History

2019-07-14 16:09:39 +03:00
// pp-exact
#![feature(decl_macro)]
pub(crate) macro mac { ($arg : expr) => { $arg + $arg } }
2019-07-14 16:09:39 +03:00
2021-12-01 11:45:14 -08:00
fn main() {}