about summary refs log tree commit diff
path: root/tests/ui/threads-sendsync/yield2.rs
blob: 2c24df44af2497c94cec538e0eba5d31eca3fa3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ run-pass

use std::thread;

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