blob: 8bc11ce31d195bd8313917af3b17d254514863ec [file]
// Test for #151358, assertion failed: !worker_thread.is_null()
//~^ ERROR cycle detected when looking up span for `Default`
//
//@ compile-flags: -Z threads=2
//@ compare-output-by-lines
trait Default {}
use std::num::NonZero;
fn main() {
NonZero();
todo!();
}