about summary refs log tree commit diff
path: root/tests/run-make/remap-path-prefix-dwarf/src/print_value.rs
blob: f7653025ba5a876b81f942dea586a25ee20c54ab (plain)
1
2
3
4
5
6
7
#![crate_type = "rlib"]

extern crate some_value;

pub fn print_value() {
    println!("{}", some_value::get_some_value());
}