]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-35450.rs
Rollup merge of #106962 - compiler-errors:use-sugg-span, r=oli-obk
[rust.git] / tests / ui / macros / issue-35450.rs
1 macro_rules! m { ($($t:tt)*) => { $($t)* } }
2
3 fn main() {
4     m!($t); //~ ERROR expected expression
5 }