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;
|
|
}
|
|
}
|