mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-24 21:05:12 +00:00
11 lines
126 B
Rust
11 lines
126 B
Rust
// compile-flags:-g
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#[macro_export]
|
|
macro_rules! new_scope {
|
|
() => {
|
|
let x = 1;
|
|
}
|
|
}
|