]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-12699.rs
Auto merge of #87150 - rusticstuff:simplify_wrapping_neg, r=m-ou-se
[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 }