rust/tests/run-make/lto-avoid-object-duplication/downstream.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
130 B
Rust
Raw Permalink Normal View History

2019-10-14 11:04:00 -05:00
extern crate upstream;
#[no_mangle]
pub extern "C" fn foo() {
print!("1 + 1 = {}", upstream::issue64153_test_function(1));
}