]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2627-raw-dylib/import-name-type-x86-only.rs
Rollup merge of #105983 - compiler-errors:issue-105981, r=tmiasko
[rust.git] / src / test / ui / rfc-2627-raw-dylib / import-name-type-x86-only.rs
1 // only-windows
2 // ignore-x86
3 #[link(name = "foo", kind = "raw-dylib", import_name_type = "decorated")]
4 //~^ ERROR import name type is only supported on x86
5 extern "C" { }
6
7 fn main() {}