]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/issue-64153/upstream.rs
Auto merge of #58281 - mark-i-m:synthesis, r=estebank
[rust.git] / src / test / run-make-fulldeps / issue-64153 / upstream.rs
1 // Make this function extern "C", public, and no-mangle, so that it gets
2 // exported from the downstream staticlib.
3 #[no_mangle]
4 pub extern "C" fn issue64153_test_function(x: u32) -> u32 {
5     x + 1
6 }