mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 06:42:22 +00:00
13 lines
207 B
Rust
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);
|
|
}
|