mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 20:27:44 +00:00
10 lines
92 B
Rust
10 lines
92 B
Rust
//@ run-pass
|
|
|
|
//@ aux-build:dylib.rs
|
|
|
|
extern crate dylib;
|
|
|
|
fn main() {
|
|
dylib::foo(1);
|
|
}
|