]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-raw-dylib.rs
Rollup merge of #98368 - sunfishcode:sunfishcode/std-os-fd, r=joshtriplett
[rust.git] / src / test / ui / feature-gates / feature-gate-raw-dylib.rs
1 // only-windows
2 // only-x86
3 #[link(name = "foo", kind = "raw-dylib")]
4 //~^ ERROR: link kind `raw-dylib` is unstable on x86
5 extern "C" {}
6
7 fn main() {}