]> git.proxmox.com Git - rustc.git/blob - tests/run-make/export-executable-symbols/main.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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 }