rust/tests/ui/mut_range_bound.stderr

35 lines
1,019 B
Text
Raw Normal View History

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