]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-stmt-matchers.rs
Rollup merge of #105796 - notriddle:notriddle/rustdoc-search-stop-doing-demerits...
[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 }