15 lines
169 B
Rust
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
|
|
}
|