blob: aa40da12b875da8ddaa5d03b1f573099309d01cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// run-rustfix
fn main() {
let mut values = vec![10, 11, 12];
let v = &mut values;
let mut max = 0;
for n in &mut *v {
max = std::cmp::max(max, *n);
}
println!("max is {}", max);
println!("Converting to percentages of maximum value...");
for n in v {
//~^ ERROR: use of moved value: `v` [E0382]
*n = 100 * (*n) / max;
}
println!("values: {:#?}", values);
}
|