blob: 9257f97fb93bdb186f68252bc40ea78e95ccc5f3 [file] [log] [blame]
//
#![crate_type="rlib"]
#![allow(warnings)]
pub mod a {
#[no_mangle]
pub extern fn fail() {
}
}
pub mod b {
#[no_mangle]
pub extern fn fail() {
//~^ symbol `fail` is already defined
}
}