summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/issue-35450.rs
blob: ac4c16306cd482307707b478ce5896caafd681b3 (plain)
1
2
3
4
5
macro_rules! m { ($($t:tt)*) => { $($t)* } }

fn main() {
    m!($t); //~ ERROR expected expression
}