summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/raw-dylib-alt-calling-convention/driver.rs
blob: b7f372c6b2b2b500f7684c5e38b9a62f57bc7444 (plain)
1
2
3
4
5
6
7
8
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()));
}