rustc/tests/ui/rfcs/rfc-2627-raw-dylib/invalid-dlltool.rs
2025-02-17 11:14:05 +01:00

13 lines
274 B
Rust

// Tests that failing to run dlltool will raise an error.
//@ needs-dlltool
//@ compile-flags: --crate-type lib --emit link -Cdlltool=does_not_exist.exe
#[link(name = "foo", kind = "raw-dylib")]
extern "C" {
fn f(x: i32);
}
pub fn lib_main() {
unsafe { f(42); }
}