summary refs log tree commit diff
path: root/src/test/pretty/macro.rs
blob: 1e1e1dbfb3ea58a1a94ff6077c5b5e76d12497c3 (plain)
1
2
3
4
5
6
7
// pp-exact

#![feature(decl_macro)]

pub(crate) macro mac { ($ arg : expr) => { $ arg + $ arg } }

fn main() { }