2023-04-20 09:37:15 -05:00
|
|
|
//@run-rustfix
|
2021-12-21 15:00:14 -06:00
|
|
|
#![warn(clippy::neg_multiply)]
|
2021-12-23 02:22:29 -06:00
|
|
|
#![allow(clippy::no_effect, clippy::unnecessary_operation, clippy::precedence)]
|
2021-12-23 03:45:16 -06:00
|
|
|
#![allow(unused)]
|
2021-12-21 15:00:14 -06:00
|
|
|
|
|
|
|
use std::ops::Mul;
|
|
|
|
|
|
|
|
struct X;
|
|
|
|
|
|
|
|
impl Mul<isize> for X {
|
|
|
|
type Output = X;
|
|
|
|
|
|
|
|
fn mul(self, _r: isize) -> Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Mul<X> for isize {
|
|
|
|
type Output = X;
|
|
|
|
|
|
|
|
fn mul(self, _r: X) -> X {
|
|
|
|
X
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 0;
|
|
|
|
|
|
|
|
-x;
|
|
|
|
|
|
|
|
-x;
|
|
|
|
|
|
|
|
100 + -x;
|
|
|
|
|
|
|
|
-(100 + x);
|
|
|
|
|
|
|
|
-17;
|
|
|
|
|
|
|
|
0xcafe | -0xff00;
|
|
|
|
|
2022-06-20 16:44:18 -05:00
|
|
|
-(3_usize as i32);
|
|
|
|
-(3_usize as i32);
|
|
|
|
|
2021-12-21 15:00:14 -06:00
|
|
|
-1 * -1; // should be ok
|
|
|
|
|
|
|
|
X * -1; // should be ok
|
|
|
|
-1 * X; // should also be ok
|
|
|
|
}
|