rust-clippy/tests/ui/mut_range_bound.stderr

61 lines
1.4 KiB
Text
Raw Normal View History

error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:8:9
2017-09-26 01:32:05 +00:00
|
2018-12-27 15:57:55 +00:00
LL | m = 5;
| ^
2017-09-26 01:32:05 +00:00
|
= note: the range of the loop is unchanged
2022-09-22 16:04:22 +00:00
= note: `-D clippy::mut-range-bound` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::mut_range_bound)]`
2017-09-26 01:32:05 +00:00
error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:17:9
2017-09-26 01:32:05 +00:00
|
2018-12-27 15:57:55 +00:00
LL | m *= 2;
| ^
|
= note: the range of the loop is unchanged
2017-09-26 01:32:05 +00:00
error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:27:9
2017-09-26 01:32:05 +00:00
|
2018-12-27 15:57:55 +00:00
LL | m = 5;
| ^
|
= note: the range of the loop is unchanged
2017-09-26 01:32:05 +00:00
error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:30:9
2017-09-26 01:32:05 +00:00
|
2018-12-27 15:57:55 +00:00
LL | n = 7;
| ^
|
= note: the range of the loop is unchanged
2017-09-26 01:32:05 +00:00
error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:46:22
2017-09-26 01:32:05 +00:00
|
LL | let n = &mut m;
2017-09-26 01:32:05 +00:00
| ^
|
= note: the range of the loop is unchanged
error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:81:9
|
LL | m = 2;
| ^
|
= note: the range of the loop is unchanged
error: attempt to mutate range bound within loop
--> $DIR/mut_range_bound.rs:93:13
|
LL | n = 1;
| ^
|
= note: the range of the loop is unchanged
2017-09-26 01:32:05 +00:00
error: aborting due to 7 previous errors
2018-01-16 16:06:27 +00:00