]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-missing-fragment.rs
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[rust.git] / src / test / ui / macros / macro-missing-fragment.rs
1 macro_rules! m {
2     ( $( any_token $field_rust_type )* ) => {}; //~ ERROR missing fragment
3 }
4
5 fn main() {
6     m!();
7 }