Make macros4 not compile by default

Did you mean this? I'm new to rust and this test passed right away, so unsure what the intention was.
This commit is contained in:
Samuel Batista 2020-08-26 22:17:03 -04:00 committed by GitHub
parent 70da09eae2
commit 6bb0b48b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,10 @@
macro_rules! my_macro { macro_rules! my_macro {
() => { () => {
println!("Check out my macro!"); println!("Check out my macro!");
}; }
($val:expr) => { ($val:expr) => {
println!("Look at this other macro: {}", $val); println!("Look at this other macro: {}", $val);
}; }
} }
fn main() { fn main() {