mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00
13 lines
185 B
Rust
13 lines
185 B
Rust
// See <https://github.com/rust-lang/cargo/issues/13027>
|
|
macro_rules! foo {
|
|
() => {
|
|
let x = Box::new(1);
|
|
let _ = &x;
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
foo!();
|
|
foo!();
|
|
}
|