rust/src/test/ui/duplicate/dupe-symbols-1.rs
2018-12-25 21:08:33 -07:00

13 lines
159 B
Rust

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