]> git.lizzy.rs Git - rust.git/blob - tests/debuginfo/auxiliary/issue-13213-aux.rs
Remove astconv usage in diagnostic
[rust.git] / tests / debuginfo / auxiliary / issue-13213-aux.rs
1 #![crate_type = "lib"]
2 // compile-flags:-g
3
4 pub use private::P;
5
6 #[derive(Copy, Clone)]
7 pub struct S {
8     p: P,
9 }
10
11 mod private {
12     #[derive(Copy, Clone)]
13     pub struct P {
14         p: i32,
15     }
16     pub const THREE: P = P { p: 3 };
17 }
18
19 pub static A: S = S { p: private::THREE };