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

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

15 lines
168 B
Rust
Raw Normal View History

// build-fail
//
#![crate_type="rlib"]
#![allow(warnings)]
#[export_name="fail"]
pub fn a() {
}
#[no_mangle]
pub fn fail() {
2015-03-03 23:09:10 +00:00
//~^ symbol `fail` is already defined
}