rust/src/test/ui/threads-sendsync/spawning-with-debug.rs
2019-07-27 18:56:16 +03:00

15 lines
330 B
Rust

// run-pass
#![allow(unused_must_use)]
#![allow(unused_mut)]
// ignore-windows
// exec-env:RUSTC_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|| ());
}