2017-09-25 18:32:05 -07:00
|
|
|
error: attempt to mutate range bound within loop; note that the range of the loop is unchanged
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/mut_range_bound.rs:25:9
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
25 | m = 5;
|
|
|
|
| ^^^^^
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
2018-08-01 16:30:44 +02:00
|
|
|
= note: `-D clippy::mut-range-bound` implied by `-D warnings`
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
|
|
error: attempt to mutate range bound within loop; note that the range of the loop is unchanged
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/mut_range_bound.rs:32:9
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
32 | m *= 2;
|
|
|
|
| ^^^^^^
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
|
|
error: attempt to mutate range bound within loop; note that the range of the loop is unchanged
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/mut_range_bound.rs:40:9
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
40 | m = 5;
|
|
|
|
| ^^^^^
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
|
|
error: attempt to mutate range bound within loop; note that the range of the loop is unchanged
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/mut_range_bound.rs:41:9
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
41 | n = 7;
|
|
|
|
| ^^^^^
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
|
|
error: attempt to mutate range bound within loop; note that the range of the loop is unchanged
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/mut_range_bound.rs:55:22
|
2017-09-25 18:32:05 -07:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
55 | let n = &mut m; // warning
|
2017-09-25 18:32:05 -07:00
|
|
|
| ^
|
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|