blob: 03fff570dff5becd024e352b52b4f00e8b64ea65 [file] [log] [blame]
//@ 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() {
//~^ ERROR symbol `fail` is already defined
}
}