]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed_macro_lhs.rs
Merge commit 'ff0993c5e9162ddaea78e83d0f0161e68bd4ea73' into clippy
[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 }