]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/assign_ops2.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / assign_ops2.rs
index 4f9fbc80aaa13994daa3df3c0028d4575f473661..24d0d77a20dacc6f8b39971445ecf53afc5c3acb 100644 (file)
@@ -7,10 +7,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
-
-
-
 #[allow(unused_assignments)]
 #[warn(clippy::misrefactored_assign_op, clippy::assign_op_pattern)]
 fn main() {
@@ -65,6 +61,4 @@ fn cow_add_assign() {
     // this should not as cow<str> Add is not commutative
     buf = cows + buf;
     println!("{}", buf);
-
 }
-