]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-stmt-matchers.rs
Rollup merge of #106970 - kylematsuda:earlybinder-item-bounds, r=lcnr
[rust.git] / tests / ui / macros / macro-stmt-matchers.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2
3
4 fn main() {
5     macro_rules! m { ($s:stmt;) => { $s } }
6     m!(vec![].push(0););
7 }