mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 10:06:55 +00:00
8 lines
236 B
Rust
8 lines
236 B
Rust
extern crate raw_dylib_alt_calling_convention_test;
|
|
|
|
fn main() {
|
|
raw_dylib_alt_calling_convention_test::library_function(
|
|
std::env::args().skip(1).next().map_or(false, |s| std::str::FromStr::from_str(&s).unwrap()),
|
|
);
|
|
}
|