]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-raw-dylib.rs
Auto merge of #106503 - cjgillot:remap-nofilter, r=oli-obk
[rust.git] / tests / 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() {}