11 lines
196 B
Rust
Raw Normal View History

2025-04-15 12:21:11 -04:00
fn main() {
my_macro!();
}
// TODO: Fix the compiler error by moving the whole definition of this macro.
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}