summary refs log tree commit diff
path: root/tests/run-make/split-debuginfo/main.rs
blob: e815672fa81978c8f010c93f13bfbe4722914d90 (plain)
1
2
3
4
5
6
7
8
extern crate bar;

use bar::{make_bar, Bar};

fn main() {
    let b = make_bar(3);
    b.print();
}