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

15 lines
169 B
Rust

//@ build-fail
//
#![crate_type="rlib"]
#![allow(warnings)]
#[export_name="fail"]
pub fn a() {
}
#[no_mangle]
pub fn fail() {
//~^ symbol `fail` is already defined
}