clean tests/ui/strings.rs

Cleaning the empty lines for clarity.
This commit is contained in:
Luis de Bethencourt 2017-05-11 15:47:31 +01:00
parent c79a350c55
commit a7635aa1c8
2 changed files with 2 additions and 8 deletions

View File

@ -49,9 +49,6 @@ fn both() {
fn str_lit_as_bytes() {
let bs = "hello there".as_bytes();
// no warning, because this cannot be written as a byte string literal:
let ubs = "".as_bytes();
@ -66,8 +63,5 @@ fn main() {
// the add is only caught for `String`
let mut x = 1;
; x = x + 1;
assert_eq!(2, x);
}

View File

@ -65,9 +65,9 @@ note: lint level defined here
| ^^^^^^^^^^^^^^^^^^^
warning: manual implementation of an assign operation
--> $DIR/strings.rs:68:7
--> $DIR/strings.rs:65:7
|
68 | ; x = x + 1;
65 | ; x = x + 1;
| ^^^^^^^^^ help: replace it with `x += 1`
|
= note: #[warn(assign_op_pattern)] on by default