rust/src/test/pretty/macro.rs

8 lines
114 B
Rust
Raw Normal View History

2019-07-14 13:09:39 +00:00
// pp-exact
#![feature(decl_macro)]
2019-07-14 19:16:16 +00:00
pub(crate) macro mac { ($ arg : expr) => { $ arg + $ arg } }
2019-07-14 13:09:39 +00:00
fn main() { }