mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
19 lines
339 B
Rust
19 lines
339 B
Rust
// Test for #111528, the ice issue cause waiting on a query that panicked
|
|
//
|
|
//@ compile-flags: -Z threads=16
|
|
//@ build-fail
|
|
//@ compare-output-by-lines
|
|
|
|
#![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() {}
|