Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
duplicate
/
dupe-symbols-3.rs
blob: 365ec182f53a3394625d236cce3f3701a398f560 [
file
] [
log
] [
blame
] [
edit
]
//@ build-fail
//
#![
crate_type
=
"rlib"
]
#![
allow
(
warnings
)]
#[
export_name
=
"fail"
]
pub
fn
a
()
{
}
#[
no_mangle
]
pub
fn
fail
()
{
//~^ symbol `fail` is already defined
}