DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-1 / tests / ui / threads-sendsync / yield2.rs
123456789101112
//@ run-pass use std::thread; pub fn main() { let mut i: isize = 0; while i < 100 { i = i + 1; println!("{}", i); thread::yield_now(); } }