rust/tests/pretty/macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
110 B
Rust
Raw Normal View History

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