rust-clippy/tests/ui/mixed_read_write_in_expression.stderr

52 lines
1.4 KiB
Text

error: unsequenced read of `x`
--> $DIR/mixed_read_write_in_expression.rs:14:9
|
LL | } + x;
| ^
|
note: whether read occurs before this write depends on evaluation order
--> $DIR/mixed_read_write_in_expression.rs:12:9
|
LL | x = 1;
| ^^^^^
= note: `-D clippy::mixed-read-write-in-expression` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::mixed_read_write_in_expression)]`
error: unsequenced read of `x`
--> $DIR/mixed_read_write_in_expression.rs:18:5
|
LL | x += {
| ^
|
note: whether read occurs before this write depends on evaluation order
--> $DIR/mixed_read_write_in_expression.rs:20:9
|
LL | x = 20;
| ^^^^^^
error: unsequenced read of `x`
--> $DIR/mixed_read_write_in_expression.rs:32:12
|
LL | a: x,
| ^
|
note: whether read occurs before this write depends on evaluation order
--> $DIR/mixed_read_write_in_expression.rs:35:13
|
LL | x = 6;
| ^^^^^
error: unsequenced read of `x`
--> $DIR/mixed_read_write_in_expression.rs:42:9
|
LL | x += {
| ^
|
note: whether read occurs before this write depends on evaluation order
--> $DIR/mixed_read_write_in_expression.rs:44:13
|
LL | x = 20;
| ^^^^^^
error: aborting due to 4 previous errors