mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 14:44:25 +00:00
13 lines
244 B
Rust
13 lines
244 B
Rust
// TODO: Fix the compiler error without taking the macro definition out of this
|
|
// module.
|
|
mod macros {
|
|
macro_rules! my_macro {
|
|
() => {
|
|
println!("Check out my macro!");
|
|
};
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
my_macro!();
|
|
}
|