]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-35450.rs
Rollup merge of #95376 - WaffleLapkin:drain_keep_rest, r=dtolnay
[rust.git] / src / test / ui / macros / issue-35450.rs
1 macro_rules! m { ($($t:tt)*) => { $($t)* } }
2
3 fn main() {
4     m!($t); //~ ERROR expected expression
5 }