]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed_macro_lhs.rs
Auto merge of #67000 - spastorino:remove-promoted-from-place, r=oli-obk
[rust.git] / src / test / ui / 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 }