]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-35450.rs
Rollup merge of #106973 - oli-obk:tait_ice_closure_in_impl_header, r=lcnr
[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 }