summaryrefslogtreecommitdiffstats
path: root/src/test/ui/threads-sendsync/yield2.rs
blob: 376faab0c48fef73fd819aecb5b377c3407f5cbc (plain)
1
2
3
4
5
6
7
8
// run-pass

use std::thread;

pub fn main() {
    let mut i: isize = 0;
    while i < 100 { i = i + 1; println!("{}", i); thread::yield_now(); }
}