11 lines
138 B
Rust
11 lines
138 B
Rust
//@ compile-flags:-g
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#[macro_export]
|
|
macro_rules! new_scope {
|
|
() => {
|
|
let x = 1; opaque(x);
|
|
}
|
|
}
|