For example, this code:
$arg:expr
used to be pretty-printed as:
$ arg : expr
but is now pretty-printed as:
$arg : expr
7 lines
111 B
Rust
7 lines
111 B
Rust
// pp-exact
|
|
|
|
#![feature(decl_macro)]
|
|
|
|
pub(crate) macro mac { ($arg : expr) => { $arg + $arg } }
|
|
|
|
fn main() { }
|