Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
std
/
thread-sleep-ms.rs
blob: 2d668b8265c27940338f480e5aab5684b962dcf3 [
file
]
//@ run-pass
//@ needs-threads
//@ ignore-emscripten (FIXME: test hangs on emscripten)
#![
allow
(
deprecated
)]
fn
main
()
{
std
::
thread
::
sleep_ms
(
250
);
}