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

#[link(name = "foo", kind = "raw-dylib", import_name_type = 6)]
//~^ ERROR import name type must be of the form `import_name_type = "string"`
extern "C" { }

fn main() {}