]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/malformed_macro_lhs.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[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 }