]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/malformed_macro_lhs.rs
New upstream version 1.17.0+dfsg1
[rustc.git] / src / test / compile-fail / malformed_macro_lhs.rs
index 5d81e21f05684e1f816522c214a289bc287458b7..0b437be5393edac4aafdf4b3f4b36dc0c57382a2 100644 (file)
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 macro_rules! my_precioooous {
-    $($t:tt)* => (1); //~ ERROR invalid macro matcher
+    t => (1); //~ ERROR invalid macro matcher
 }
 
 fn main() {