Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-raw-dylib-elf.rs
blob: ec49e53d9b447e24e56dd8f730d65f2567b43027 [
file
] [
log
] [
blame
]
//@ 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
()
{}