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