mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
419 B
Rust
21 lines
419 B
Rust
// run-rustfix
|
|
|
|
fn main() {
|
|
let mut values = vec![10, 11, 12];
|
|
let v = &mut values;
|
|
|
|
let mut max = 0;
|
|
|
|
for n in 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);
|
|
}
|