]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2627-raw-dylib/import-name-type-multiple.rs
Rollup merge of #101040 - danielhenrymantilla:no-bounds-for-default-annotated-derive...
[rust.git] / src / test / ui / rfc-2627-raw-dylib / import-name-type-multiple.rs
1 // ignore-tidy-linelength
2 // only-windows
3 // only-x86
4 #![feature(raw_dylib)]
5
6 #[link(name = "foo", kind = "raw-dylib", import_name_type = "decorated", import_name_type = "decorated")]
7 //~^ ERROR multiple `import_name_type` arguments in a single `#[link]` attribute
8 extern "C" { }
9
10 fn main() {}