]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-39388.rs
Rollup merge of #106714 - Ezrashaw:remove-e0490, r=davidtwco
[rust.git] / tests / ui / macros / issue-39388.rs
1 #![allow(unused_macros)]
2
3 macro_rules! assign {
4     (($($a:tt)*) = ($($b:tt))*) => { //~ ERROR expected one of: `*`, `+`, or `?`
5         $($a)* = $($b)*
6     }
7 }
8
9 fn main() {}