]> git.lizzy.rs Git - rust.git/commitdiff
Add allow unused
authorOussama <abdelmoumenoussama@gmail.com>
Thu, 23 Dec 2021 09:45:16 +0000 (10:45 +0100)
committerOussama <abdelmoumenoussama@gmail.com>
Thu, 23 Dec 2021 09:51:17 +0000 (10:51 +0100)
tests/ui/neg_multiply.fixed
tests/ui/neg_multiply.rs
tests/ui/neg_multiply.stderr

index e4aa7fbadfae72bfe568269c82de636d4bc89fc6..35af9d6ae317f5c75424dabac4dee8786776f73f 100644 (file)
@@ -1,6 +1,7 @@
 // run-rustfix
 #![warn(clippy::neg_multiply)]
 #![allow(clippy::no_effect, clippy::unnecessary_operation, clippy::precedence)]
+#![allow(unused)]
 
 use std::ops::Mul;
 
index e95da705dca96594541590be2a6e9503486d96b9..7dbdb0906ceeb3e7f17c3b480b94c141f25bad01 100644 (file)
@@ -1,6 +1,7 @@
 // run-rustfix
 #![warn(clippy::neg_multiply)]
 #![allow(clippy::no_effect, clippy::unnecessary_operation, clippy::precedence)]
+#![allow(unused)]
 
 use std::ops::Mul;
 
index 42d5dffb6a568113b9b57de7fcb99850ba8d3242..dbf8fb36938cbcbdd918c9d18656e32640e695e2 100644 (file)
@@ -1,5 +1,5 @@
 error: this multiplication by -1 can be written more succinctly
-  --> $DIR/neg_multiply.rs:28:5
+  --> $DIR/neg_multiply.rs:29:5
    |
 LL |     x * -1;
    |     ^^^^^^ help: consider using: `-x`
@@ -7,31 +7,31 @@ LL |     x * -1;
    = note: `-D clippy::neg-multiply` implied by `-D warnings`
 
 error: this multiplication by -1 can be written more succinctly
-  --> $DIR/neg_multiply.rs:30:5
+  --> $DIR/neg_multiply.rs:31:5
    |
 LL |     -1 * x;
    |     ^^^^^^ help: consider using: `-x`
 
 error: this multiplication by -1 can be written more succinctly
-  --> $DIR/neg_multiply.rs:32:11
+  --> $DIR/neg_multiply.rs:33:11
    |
 LL |     100 + x * -1;
    |           ^^^^^^ help: consider using: `-x`
 
 error: this multiplication by -1 can be written more succinctly
-  --> $DIR/neg_multiply.rs:34:5
+  --> $DIR/neg_multiply.rs:35:5
    |
 LL |     (100 + x) * -1;
    |     ^^^^^^^^^^^^^^ help: consider using: `-(100 + x)`
 
 error: this multiplication by -1 can be written more succinctly
-  --> $DIR/neg_multiply.rs:36:5
+  --> $DIR/neg_multiply.rs:37:5
    |
 LL |     -1 * 17;
    |     ^^^^^^^ help: consider using: `-17`
 
 error: this multiplication by -1 can be written more succinctly
-  --> $DIR/neg_multiply.rs:38:14
+  --> $DIR/neg_multiply.rs:39:14
    |
 LL |     0xcafe | 0xff00 * -1;
    |              ^^^^^^^^^^^ help: consider using: `-0xff00`