mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 18:11:19 +00:00
7 lines
72 B
Rust
7 lines
72 B
Rust
#![crate_type = "dylib"]
|
|
extern crate m1;
|
|
|
|
pub fn m2() {
|
|
m1::m1()
|
|
}
|