]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/export-executable-symbols/main.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[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 }