summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2627-raw-dylib/import-name-type-multiple.rs
blob: 7ccb0082fb976d78fa587c07bd73f10e0e6c8b2a (plain)
1
2
3
4
5
6
7
8
9
10
// ignore-tidy-linelength
// only-windows
// only-x86
#![feature(raw_dylib)]

#[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() {}