rust/tests/ui/parallel-rustc/cache-after-waiting-issue-111528.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
225 B
Rust
Raw Normal View History

2024-02-07 01:26:57 -06:00
//@ 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() {}