blob: 891b0bf06509a6d4653ca203b96560448dee626f [file] [log] [blame]
//@ 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);
}