about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-raw-dylib-elf.rs
blob: ec49e53d9b447e24e56dd8f730d65f2567b43027 (plain)
1
2
3
4
5
6
7
8
9
//@ 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() {}