]> git.proxmox.com Git - rustc.git/blame - src/test/debuginfo/auxiliary/macro-stepping.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / debuginfo / auxiliary / macro-stepping.rs
CommitLineData
9e0c209e 1// compile-flags:-g
223e47cc 2
9e0c209e
SL
3#![crate_type = "rlib"]
4
5#[macro_export]
6macro_rules! new_scope {
7 () => {
8 let x = 1;
9 }
223e47cc 10}