mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
clean tests/ui/eval_order_dependence.rs
Cleaning the empty lines for clarity.
This commit is contained in:
parent
fbc6b26592
commit
bc9cdf1d64
2 changed files with 12 additions and 14 deletions
|
@ -7,7 +7,6 @@ fn main() {
|
|||
let mut x = 0;
|
||||
let a = { x = 1; 1 } + x;
|
||||
|
||||
|
||||
// Example from iss#277
|
||||
x += { x = 20; 2 };
|
||||
|
||||
|
@ -16,7 +15,6 @@ fn main() {
|
|||
struct Foo { a: i32, b: i32 };
|
||||
let base = Foo { a: 4, b: 5 };
|
||||
let foo = Foo { a: x, .. { x = 6; base } };
|
||||
|
||||
// ...inside a closure?
|
||||
let closure = || {
|
||||
let mut x = 0;
|
||||
|
|
|
@ -16,39 +16,39 @@ note: whether read occurs before this write depends on evaluation order
|
|||
| ^^^^^
|
||||
|
||||
error: unsequenced read of a variable
|
||||
--> $DIR/eval_order_dependence.rs:12:5
|
||||
--> $DIR/eval_order_dependence.rs:11:5
|
||||
|
|
||||
12 | x += { x = 20; 2 };
|
||||
11 | x += { x = 20; 2 };
|
||||
| ^
|
||||
|
|
||||
note: whether read occurs before this write depends on evaluation order
|
||||
--> $DIR/eval_order_dependence.rs:12:12
|
||||
--> $DIR/eval_order_dependence.rs:11:12
|
||||
|
|
||||
12 | x += { x = 20; 2 };
|
||||
11 | x += { x = 20; 2 };
|
||||
| ^^^^^^
|
||||
|
||||
error: unsequenced read of a variable
|
||||
--> $DIR/eval_order_dependence.rs:18:24
|
||||
--> $DIR/eval_order_dependence.rs:17:24
|
||||
|
|
||||
18 | let foo = Foo { a: x, .. { x = 6; base } };
|
||||
17 | let foo = Foo { a: x, .. { x = 6; base } };
|
||||
| ^
|
||||
|
|
||||
note: whether read occurs before this write depends on evaluation order
|
||||
--> $DIR/eval_order_dependence.rs:18:32
|
||||
--> $DIR/eval_order_dependence.rs:17:32
|
||||
|
|
||||
18 | let foo = Foo { a: x, .. { x = 6; base } };
|
||||
17 | let foo = Foo { a: x, .. { x = 6; base } };
|
||||
| ^^^^^
|
||||
|
||||
error: unsequenced read of a variable
|
||||
--> $DIR/eval_order_dependence.rs:23:9
|
||||
--> $DIR/eval_order_dependence.rs:21:9
|
||||
|
|
||||
23 | x += { x = 20; 2 };
|
||||
21 | x += { x = 20; 2 };
|
||||
| ^
|
||||
|
|
||||
note: whether read occurs before this write depends on evaluation order
|
||||
--> $DIR/eval_order_dependence.rs:23:16
|
||||
--> $DIR/eval_order_dependence.rs:21:16
|
||||
|
|
||||
23 | x += { x = 20; 2 };
|
||||
21 | x += { x = 20; 2 };
|
||||
| ^^^^^^
|
||||
|
||||
error: aborting due to 4 previous errors
|
||||
|
|
Loading…
Reference in a new issue