summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-raw-dylib-import-name-type.rs
blob: 295f502d6a3e57f200195a1fae8b0ebf3cc33c2b (plain)
1
2
3
4
5
6
7
8
// only-windows
// only-x86
#[link(name = "foo", kind = "raw-dylib", import_name_type = "decorated")]
//~^ ERROR link kind `raw-dylib` is unstable on x86
//~| ERROR import name type is unstable
extern "C" {}

fn main() {}