]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/export-executable-symbols/main.rs
Rollup merge of #97077 - ouz-a:Optimize-backend, r=oli-obk
[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 }