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

15 lines
175 B
Rust

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