]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-12699.rs
Rollup merge of #107186 - GuillaumeGomez:correct-pseudo-element-selector, r=notriddle
[rust.git] / tests / 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 }