]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-12699.rs
Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into sync_cg_clif-2021-12-31
[rust.git] / src / test / ui / issues / issue-12699.rs
1 // run-pass
2 // ignore-wasm32-bare can't block the thread
3 // ignore-sgx not supported
4 #![allow(deprecated)]
5
6 use std::thread;
7
8 fn main() {
9     thread::sleep_ms(250);
10 }