summaryrefslogtreecommitdiffstats
path: root/tests/run-make/split-debuginfo/foo.rs
blob: b058e540862343f7a2b2b791e78fdfc830dc65e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub struct Foo {
    x: u32,
}

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

pub fn make_foo(x: u32) -> Foo {
    Foo { x }
}

fn main() {}