rust/tests/ui/feature-gates/feature-gate-raw-dylib-elf.rs

10 lines
203 B
Rust

//@ only-elf
//@ needs-dynamic-linking
#[link(name = "meow", kind = "raw-dylib")] //~ ERROR: link kind `raw-dylib` is unstable on ELF platforms
unsafe extern "C" {
safe fn meowmeow();
}
fn main() {}