2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::neg_multiply)]
|
|
|
|
#![allow(clippy::no_effect, clippy::unnecessary_operation)]
|
2016-04-17 21:33:21 +00:00
|
|
|
|
|
|
|
use std::ops::Mul;
|
|
|
|
|
|
|
|
struct X;
|
|
|
|
|
|
|
|
impl Mul<isize> for X {
|
|
|
|
type Output = X;
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2016-04-17 21:33:21 +00:00
|
|
|
fn mul(self, _r: isize) -> Self {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Mul<X> for isize {
|
|
|
|
type Output = X;
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2016-04-17 21:33:21 +00:00
|
|
|
fn mul(self, _r: X) -> X {
|
|
|
|
X
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 0;
|
|
|
|
|
|
|
|
x * -1;
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-04-17 21:33:21 +00:00
|
|
|
-1 * x;
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-04-17 21:33:21 +00:00
|
|
|
-1 * -1; // should be ok
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2016-04-17 21:33:21 +00:00
|
|
|
X * -1; // should be ok
|
|
|
|
-1 * X; // should also be ok
|
|
|
|
}
|