clean tests/ui/strings.rs
Cleaning the empty lines for clarity.
This commit is contained in:
parent
c79a350c55
commit
a7635aa1c8
@ -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);
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user