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

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

9 lines
87 B
Rust
Raw Permalink Normal View History

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