]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2627-raw-dylib/import-name-type-x86-only.rs
Auto merge of #100935 - cuviper:upgrade-android-ci, r=Mark-Simulacrum
[rust.git] / src / test / ui / rfc-2627-raw-dylib / import-name-type-x86-only.rs
1 // only-windows
2 // ignore-x86
3 #![feature(raw_dylib)]
4 //~^ WARN the feature `raw_dylib` is incomplete
5 #[link(name = "foo", kind = "raw-dylib", import_name_type = "decorated")]
6 //~^ ERROR import name type is only supported on x86
7 extern "C" { }
8
9 fn main() {}