rust/tests/ui/threads-sendsync/spawning-with-debug.rs
2023-01-11 09:32:08 +00:00

16 lines
330 B
Rust

// run-pass
#![allow(unused_must_use)]
#![allow(unused_mut)]
// ignore-windows
// exec-env:RUST_LOG=debug
// ignore-emscripten no threads support
// 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 || ());
}