rustc/tests/ui/std/thread-sleep-ms.rs
2025-01-11 15:57:26 +01:00

13 lines
207 B
Rust

//@ run-pass
//@ ignore-sgx not supported
//@ ignore-emscripten
// FIXME: test hangs on emscripten
#![allow(deprecated)]
#![allow(unused_imports)]
use std::thread;
fn main() {
thread::sleep_ms(250);
}