mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
41 lines
888 B
Text
41 lines
888 B
Text
|
error: assignments don't nest intuitively
|
||
|
--> $DIR/multi_assignments.rs:4:5
|
||
|
|
|
||
|
LL | a = b = c;
|
||
|
| ^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D clippy::multi-assignments` implied by `-D warnings`
|
||
|
|
||
|
error: assignments don't nest intuitively
|
||
|
--> $DIR/multi_assignments.rs:5:5
|
||
|
|
|
||
|
LL | a = b = c = d;
|
||
|
| ^^^^^^^^^^^^^
|
||
|
|
||
|
error: assignments don't nest intuitively
|
||
|
--> $DIR/multi_assignments.rs:5:9
|
||
|
|
|
||
|
LL | a = b = c = d;
|
||
|
| ^^^^^^^^^
|
||
|
|
||
|
error: assignments don't nest intuitively
|
||
|
--> $DIR/multi_assignments.rs:6:5
|
||
|
|
|
||
|
LL | a = b = { c };
|
||
|
| ^^^^^^^^^^^^^
|
||
|
|
||
|
error: assignments don't nest intuitively
|
||
|
--> $DIR/multi_assignments.rs:7:5
|
||
|
|
|
||
|
LL | a = { b = c };
|
||
|
| ^^^^^^^^^^^^^
|
||
|
|
||
|
error: assignments don't nest intuitively
|
||
|
--> $DIR/multi_assignments.rs:8:5
|
||
|
|
|
||
|
LL | a = (b = c);
|
||
|
| ^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 6 previous errors
|
||
|
|