]> git.proxmox.com Git - rustc.git/blob - tests/ui/rfc-2627-raw-dylib/import-name-type-x86-only.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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() {}