summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-12699.rs
blob: e26c2d7cde23449043f8fdea2d20bf58b6493873 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
// ignore-wasm32-bare can't block the thread
// ignore-sgx not supported
#![allow(deprecated)]

use std::thread;

fn main() {
    thread::sleep_ms(250);
}