]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-missing-fragment.rs
Auto merge of #83152 - guswynn:jemallocator_part2, r=Mark-Simulacrum
[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 }