blob: a8e31a648c9ed4e67a41319d43afeecdc75b17fb [file] [log] [blame]
#![allow(unused_macros)]
macro_rules! assign {
(($($a:tt)*) = ($($b:tt))*) => { //~ ERROR expected one of: `*`, `+`, or `?`
$($a)* = $($b)*
}
}
fn main() {}