mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 05:25:38 +00:00
11 lines
163 B
Rust
11 lines
163 B
Rust
#[macro_export]
|
|
macro_rules! ice {
|
|
() => {
|
|
fn main() {
|
|
let d = &mut 0;
|
|
let c = || *d += 1;
|
|
c();
|
|
}
|
|
};
|
|
}
|