rust/tests/ui/eval_order_dependence.stderr

52 lines
1.4 KiB
Plaintext
Raw Normal View History

error: unsequenced read of a variable
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:18:28
|
18 | let a = { x = 1; 1 } + x;
| ^
|
= note: `-D clippy::eval-order-dependence` implied by `-D warnings`
note: whether read occurs before this write depends on evaluation order
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:18:15
|
18 | let a = { x = 1; 1 } + x;
| ^^^^^
error: unsequenced read of a variable
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:21:5
|
2018-10-06 18:18:06 +02:00
21 | x += { x = 20; 2 };
| ^
|
note: whether read occurs before this write depends on evaluation order
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:21:12
|
2018-10-06 18:18:06 +02:00
21 | x += { x = 20; 2 };
| ^^^^^^
error: unsequenced read of a variable
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:27:24
|
2018-10-06 18:18:06 +02:00
27 | let foo = Foo { a: x, .. { x = 6; base } };
| ^
|
note: whether read occurs before this write depends on evaluation order
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:27:32
|
2018-10-06 18:18:06 +02:00
27 | let foo = Foo { a: x, .. { x = 6; base } };
| ^^^^^
error: unsequenced read of a variable
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:31:9
|
2018-10-06 18:18:06 +02:00
31 | x += { x = 20; 2 };
| ^
|
note: whether read occurs before this write depends on evaluation order
2018-10-06 18:18:06 +02:00
--> $DIR/eval_order_dependence.rs:31:16
|
2018-10-06 18:18:06 +02:00
31 | x += { x = 20; 2 };
| ^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 4 previous errors