1
Fork 0
rust/tests/ui/parallel-rustc/cache-after-waiting-issue-111528.rs
2024-02-07 15:26:57 +08:00

16 lines
223 B
Rust

// compile-flags: -Z threads=16
// build-fail
#![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() {}