rust/tests/run-make/export-executable-symbols/main.rs

9 lines
87 B
Rust
Raw Normal View History

//@ edition:2018
2022-07-25 00:20:23 -05:00
fn main() {}
#[no_mangle]
pub fn exported_symbol() -> i8 {
42
}