mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-26 23:35:55 +00:00
14 lines
146 B
Rust
14 lines
146 B
Rust
#![crate_type = "lib"]
|
|
|
|
pub mod a {
|
|
#[inline(always)]
|
|
pub fn foo() {}
|
|
|
|
pub fn bar() {}
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn bar() {
|
|
a::foo();
|
|
}
|