rust/src/test/ui/duplicate/dupe-symbols-2.rs

17 lines
217 B
Rust
Raw Normal View History

//
#![crate_type="rlib"]
#![allow(warnings)]
2017-10-30 12:19:31 -05:00
pub mod a {
#[no_mangle]
pub extern fn fail() {
}
}
2017-10-30 12:19:31 -05:00
pub mod b {
#[no_mangle]
pub extern fn fail() {
2015-03-03 17:09:10 -06:00
//~^ symbol `fail` is already defined
}
}