rust/tests/ui/duplicate/dupe-symbols-2.rs
2023-01-11 09:32:08 +00:00

19 lines
240 B
Rust

// build-fail
//
#![crate_type="rlib"]
#![allow(warnings)]
pub mod a {
#[no_mangle]
pub extern "C" fn fail() {
}
}
pub mod b {
#[no_mangle]
pub extern "C" fn fail() {
//~^ symbol `fail` is already defined
}
}