Merge pull request #506 from bhgsbatista/patch-1

Make macros4 not compile by default
This commit is contained in:
fmoko 2020-08-27 11:21:09 +02:00 committed by GitHub
commit 9699da4968
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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