]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/malformed_macro_lhs.rs
Rollup merge of #106962 - compiler-errors:use-sugg-span, r=oli-obk
[rust.git] / tests / ui / macros / malformed_macro_lhs.rs
1 macro_rules! my_precioooous {
2     t => (1); //~ ERROR invalid macro matcher
3 }
4
5 fn main() {
6     my_precioooous!();
7 }