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

fn main() {}