]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/export-executable-symbols/main.rs
Auto merge of #98553 - the8472:next_chunk_opt, r=Mark-Simulacrum
[rust.git] / src / test / run-make / export-executable-symbols / main.rs
1 // edition:2018
2
3 fn main() {}
4
5 #[no_mangle]
6 pub fn exported_symbol() -> i8 {
7     42
8 }