blob: 523b1b2d1f3fea6f6f094773532c93b9cab7cff9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Test for #118205, which causes a deadlock bug
//
//@ compile-flags:-C extra-filename=-1 -Z threads=16
//@ no-prefer-dynamic
//@ build-pass
//@ compare-output-by-lines
#![crate_name = "crateresolve1"]
#![crate_type = "lib"]
pub fn f() -> isize { 10 }
|