rust/tests/pretty/macro.rs

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

8 lines
111 B
Rust
Raw Normal View History

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