Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
duplicate
/
dupe-symbols-1.rs
blob: 28e329b56caf71c0b48c276fb42a7a9d94b98c89 [
file
] [
log
] [
blame
]
// build-fail
//
#![
crate_type
=
"rlib"
]
#![
allow
(
warnings
)]
#[
export_name
=
"fail"
]
pub
fn
a
()
{
}
#[
export_name
=
"fail"
]
pub
fn
b
()
{
//~^ symbol `fail` is already defined
}