rust/tests/ui/duplicate/dupe-symbols-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
240 B
Rust
Raw Normal View History

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