Remove useless part of test

This commit is contained in:
Pascal Hertleif 2017-01-28 14:17:47 +01:00
parent 2ba03c8467
commit 2357dfe8ee

View File

@ -286,11 +286,6 @@ fn main() {
id_col[i] = 1f64;
}
// This is fine.
for i in (10..0).map(|x| x * 2) {
println!("{}", i);
}
for _v in vec.iter() { }
//~^ ERROR it is more idiomatic to loop over `&vec`
//~| HELP to write this more concisely, try looping over