rust/tests/ui/rfc-2627-raw-dylib/raw-dylib-windows-only.rs
2023-01-11 09:32:08 +00:00

7 lines
234 B
Rust

// ignore-windows
// compile-flags: --crate-type lib
#![cfg_attr(target_arch = "x86", feature(raw_dylib))]
#[link(name = "foo", kind = "raw-dylib")]
//~^ ERROR: link kind `raw-dylib` is only supported on Windows targets
extern "C" {}