]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-12699.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[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 }