mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 22:40:17 +00:00
10 lines
90 B
Rust
10 lines
90 B
Rust
// run-pass
|
|
|
|
// aux-build:dylib.rs
|
|
|
|
extern crate dylib;
|
|
|
|
fn main() {
|
|
dylib::foo(1);
|
|
}
|