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