2017-05-12 09:53:58 +02:00
|
|
|
#![allow(unused_macros)]
|
|
|
|
|
|
2017-02-08 23:38:41 +00:00
|
|
|
macro_rules! assign {
|
2019-05-18 08:24:56 +02:00
|
|
|
(($($a:tt)*) = ($($b:tt))*) => { //~ ERROR expected one of: `*`, `+`, or `?`
|
2017-02-08 23:38:41 +00:00
|
|
|
$($a)* = $($b)*
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|