]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rfc-2627-raw-dylib/raw-dylib-windows-only.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / rfc-2627-raw-dylib / raw-dylib-windows-only.rs
1 // ignore-windows
2 // compile-flags: --crate-type lib
3 #![feature(raw_dylib)]
4 //~^ WARNING: the feature `raw_dylib` is incomplete
5 #[link(name = "foo", kind = "raw-dylib")]
6 //~^ ERROR: `#[link(...)]` with `kind = "raw-dylib"` only supported on Windows
7 extern "C" {}