]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/auxiliary/macro-stepping.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[rust.git] / src / test / debuginfo / auxiliary / macro-stepping.rs
1 // compile-flags:-g
2
3 #![crate_type = "rlib"]
4
5 #[macro_export]
6 macro_rules! new_scope {
7     () => {
8         let x = 1;
9     }
10 }