]> git.lizzy.rs Git - rust.git/blob - tests/run-make/raw-dylib-alt-calling-convention/driver.rs
Rollup merge of #106407 - mejrs:attr_check, r=compiler-errors
[rust.git] / tests / run-make / raw-dylib-alt-calling-convention / driver.rs
1 extern crate raw_dylib_alt_calling_convention_test;
2
3 fn main() {
4     raw_dylib_alt_calling_convention_test::library_function(
5         std::env::args().skip(1).next().map_or(
6             false,
7             |s| std::str::FromStr::from_str(&s).unwrap()));
8 }