summaryrefslogtreecommitdiff
path: root/tests/ui/rfc-2627-raw-dylib/import-name-type-multiple.rs
blob: b96f61a26da8b9337d46086b45b87534dddb9e1c (plain)
1
2
3
4
5
6
7
8
// ignore-tidy-linelength
// only-windows
// only-x86
#[link(name = "foo", kind = "raw-dylib", import_name_type = "decorated", import_name_type = "decorated")]
//~^ ERROR multiple `import_name_type` arguments in a single `#[link]` attribute
extern "C" { }

fn main() {}