Rollup merge of #25490 - huachaohuang:patch-1, r=alexcrichton

This commit is contained in:
Manish Goregaokar 2015-05-17 11:55:39 +05:30
commit b40fcf5b10

View File

@ -104,7 +104,7 @@ fn process() {
let handles: Vec<_> = (0..10).map(|_| {
thread::spawn(|| {
let mut _x = 0;
for _ in (0..5_000_001) {
for _ in (0..5_000_000) {
_x += 1
}
})