blob: a357040a4e4dfb4a9e825c03ac3a7a28db789e84 [file] [log] [blame]
// 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() {}