]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-raw-dylib-import-name-type.rs
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / ui / feature-gates / feature-gate-raw-dylib-import-name-type.rs
1 // only-windows
2 // only-x86
3 #[link(name = "foo", kind = "raw-dylib", import_name_type = "decorated")]
4 //~^ ERROR link kind `raw-dylib` is unstable on x86
5 //~| ERROR import name type is unstable
6 extern "C" {}
7
8 fn main() {}