]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/cdylib-fewer-symbols/foo.rs
Rollup merge of #107332 - chansuke:issue-107230, r=albertlarsan68
[rust.git] / tests / run-make-fulldeps / cdylib-fewer-symbols / foo.rs
1 #![crate_type = "cdylib"]
2
3 #[no_mangle]
4 pub extern "C" fn foo() -> u32 {
5     3
6 }