summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/split-debuginfo/bar.rs
blob: 07dd0715252cc346913b560ee70946ab9467e4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct Bar {
    x: u32,
}

impl Bar {
    pub fn print(&self) {
        println!("{}", self.x);
    }
}

pub fn make_bar(x: u32) -> Bar {
    Bar { x }
}