clean tests/ui/formatting.rs

Cleaning the empty lines for clarity.
This commit is contained in:
Luis de Bethencourt 2017-05-11 12:19:46 +01:00
parent 6d2329f2cb
commit df5d12a3ec
2 changed files with 35 additions and 61 deletions

View file

@ -13,8 +13,6 @@ fn main() {
// weird `else if` formatting:
if foo() {
} if foo() {
}
let _ = { // if as the last expression
@ -22,8 +20,6 @@ fn main() {
if foo() {
} if foo() {
}
else {
}
@ -32,8 +28,6 @@ fn main() {
let _ = { // if in the middle of a block
if foo() {
} if foo() {
}
else {
}
@ -43,15 +37,11 @@ fn main() {
if foo() {
} else
if foo() { // the span of the above error should continue here
}
if foo() {
}
else
if foo() { // the span of the above error should continue here
}
@ -73,25 +63,17 @@ fn main() {
if foo() {
}
else if
foo() {}
// weird op_eq formatting:
let mut a = 42;
a =- 35;
a =* &191;
let mut b = true;
b =! false;
// those are ok:
a = -35;
a = *&191;
@ -100,14 +82,10 @@ fn main() {
// possible missing comma in an array
let _ = &[
-1, -2, -3 // <= no comma here
-4, -5, -6
];
let _ = &[
-1, -2, -3 // <= no comma here
*4, -5, -6
];

View file

@ -13,54 +13,50 @@ note: lint level defined here
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
error: this looks like an `else if` but the `else` is missing
--> $DIR/formatting.rs:24:10
--> $DIR/formatting.rs:22:10
|
24 | } if foo() {
22 | } if foo() {
| ^
|
= note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
error: this looks like an `else if` but the `else` is missing
--> $DIR/formatting.rs:34:10
--> $DIR/formatting.rs:30:10
|
34 | } if foo() {
30 | } if foo() {
| ^
|
= note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
= note: to remove this lint, add the missing `else` or add a new line before the second `if`
error: this is an `else if` but the formatting might hide it
--> $DIR/formatting.rs:45:6
--> $DIR/formatting.rs:39:6
|
45 | } else
39 | } else
| ______^
46 | |
47 | |
48 | | if foo() { // the span of the above error should continue here
40 | | if foo() { // the span of the above error should continue here
| |____^
|
= note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
= note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
error: this is an `else if` but the formatting might hide it
--> $DIR/formatting.rs:52:6
--> $DIR/formatting.rs:44:6
|
52 | }
44 | }
| ______^
53 | |
54 | |
55 | | else
56 | | if foo() { // the span of the above error should continue here
45 | | else
46 | | if foo() { // the span of the above error should continue here
| |____^
|
= note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
= note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
--> $DIR/formatting.rs:83:6
--> $DIR/formatting.rs:71:6
|
83 | a =- 35;
71 | a =- 35;
| ^^^^
|
= note: #[deny(suspicious_assignment_formatting)] implied by #[deny(clippy)]
@ -72,45 +68,45 @@ note: lint level defined here
= note: to remove this lint, use either `-=` or `= -`
error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
--> $DIR/formatting.rs:86:6
--> $DIR/formatting.rs:72:6
|
86 | a =* &191;
72 | a =* &191;
| ^^^^
|
= note: #[deny(suspicious_assignment_formatting)] implied by #[deny(clippy)]
= note: to remove this lint, use either `*=` or `= *`
error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
--> $DIR/formatting.rs:91:6
--> $DIR/formatting.rs:75:6
|
91 | b =! false;
75 | b =! false;
| ^^^^
|
= note: #[deny(suspicious_assignment_formatting)] implied by #[deny(clippy)]
= note: to remove this lint, use either `!=` or `= !`
error: possibly missing a comma here
--> $DIR/formatting.rs:102:19
|
102 | -1, -2, -3 // <= no comma here
| ^
|
= note: #[deny(possible_missing_comma)] implied by #[deny(clippy)]
--> $DIR/formatting.rs:84:19
|
84 | -1, -2, -3 // <= no comma here
| ^
|
= note: #[deny(possible_missing_comma)] implied by #[deny(clippy)]
note: lint level defined here
--> $DIR/formatting.rs:4:9
|
4 | #![deny(clippy)]
| ^^^^^^
= note: to remove this lint, add a comma or write the expr in a single line
--> $DIR/formatting.rs:4:9
|
4 | #![deny(clippy)]
| ^^^^^^
= note: to remove this lint, add a comma or write the expr in a single line
error: possibly missing a comma here
--> $DIR/formatting.rs:108:19
|
108 | -1, -2, -3 // <= no comma here
| ^
|
= note: #[deny(possible_missing_comma)] implied by #[deny(clippy)]
= note: to remove this lint, add a comma or write the expr in a single line
--> $DIR/formatting.rs:88:19
|
88 | -1, -2, -3 // <= no comma here
| ^
|
= note: #[deny(possible_missing_comma)] implied by #[deny(clippy)]
= note: to remove this lint, add a comma or write the expr in a single line
error: aborting due to 10 previous errors