2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: -Z threads=16
|
|
|
|
//@ build-fail
|
2024-02-07 15:26:57 +08:00
|
|
|
|
|
|
|
#![crate_type="rlib"]
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
#[export_name="fail"]
|
|
|
|
pub fn a() {
|
|
|
|
}
|
|
|
|
|
|
|
|
#[export_name="fail"]
|
|
|
|
pub fn b() {
|
|
|
|
//~^ Error symbol `fail` is already defined
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|