rust/src/test/ui/duplicate/dupe-symbols-1.rs

13 lines
159 B
Rust
Raw Normal View History

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