about summary refs log tree commit diff
path: root/tests/debuginfo/auxiliary/issue-13213-aux.rs
blob: b4787d557a5340a77cfd5e4749eb2fb506ec52f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![crate_type = "lib"]
//@ compile-flags:-g

pub use private::P;

#[derive(Copy, Clone)]
pub struct S {
    p: P,
}

mod private {
    #[derive(Copy, Clone)]
    pub struct P {
        p: i32,
    }
    pub const THREE: P = P { p: 3 };
}

pub static A: S = S { p: private::THREE };