mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00

- Use `needs-threads` instead of `ignore-sgx`. - Remove unnecessary import and `#![allow(unused_import)]`.
10 lines
157 B
Rust
10 lines
157 B
Rust
//@ run-pass
|
|
//@ needs-threads
|
|
//@ ignore-emscripten (FIXME: test hangs on emscripten)
|
|
|
|
#![allow(deprecated)]
|
|
|
|
fn main() {
|
|
std::thread::sleep_ms(250);
|
|
}
|