mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-02 03:28:29 +00:00
8 lines
98 B
Rust
8 lines
98 B
Rust
#[macro_export]
|
|
macro_rules! m {
|
|
() => {
|
|
fn f() {} // (2)
|
|
g(); // (1)
|
|
}
|
|
}
|