rust/tests/ui/threads-sendsync/spawning-with-debug.rs

16 lines
311 B
Rust

//@ run-pass
#![allow(unused_must_use)]
#![allow(unused_mut)]
//@ ignore-windows
//@ exec-env:RUST_LOG=debug
//@ needs-threads
// regression test for issue #10405, make sure we don't call println! too soon.
use std::thread::Builder;
pub fn main() {
let mut t = Builder::new();
t.spawn(move || ());
}