Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
linking
/
weird-export-names.rs
blob: 8fb2dc6bf5e8d96d7c61c42418c1633de762fa70 [
file
] [
log
] [
blame
]
//@ build-pass
//@ needs-crate-type: cdylib
#![
crate_type
=
"cdylib"
]
#[
export_name
=
"foo.0123"
]
pub
extern
"C"
fn
foo
()
{}
#[
export_name
=
"EXPORTS"
]
pub
extern
"C"
fn
bar
()
{}