2022-10-06 02:44:38 -05:00
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:165:5
|
2022-09-09 06:36:26 -05:00
|
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
LL | _n += 1;
|
|
|
|
| ^^^^^^^
|
2022-12-17 07:12:54 -06:00
|
|
|
|
|
|
|
|
= note: `-D clippy::arithmetic-side-effects` implied by `-D warnings`
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:166:5
|
2022-09-09 06:36:26 -05:00
|
|
|
|
|
2022-10-06 02:44:38 -05:00
|
|
|
LL | _n += &1;
|
|
|
|
| ^^^^^^^^
|
2022-09-09 06:36:26 -05:00
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:167:5
|
2022-09-09 06:36:26 -05:00
|
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
LL | _n -= 1;
|
|
|
|
| ^^^^^^^
|
2022-09-09 06:36:26 -05:00
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:168:5
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n -= &1;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:169:5
|
2022-09-09 06:36:26 -05:00
|
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
LL | _n /= 0;
|
|
|
|
| ^^^^^^^
|
2022-09-09 06:36:26 -05:00
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:170:5
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n /= &0;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:171:5
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n %= 0;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:172:5
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n %= &0;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:173:5
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n *= 2;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:174:5
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n *= &2;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:177:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n + 1;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:178:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n + &1;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:179:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = 1 + _n;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:180:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = &1 + _n;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:181:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n - 1;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:182:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n - &1;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:183:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = 1 - _n;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:184:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = &1 - _n;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:185:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n / 0;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:186:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n / &0;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:187:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n % 0;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:188:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n % &0;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:189:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n * 2;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:190:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = _n * &2;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:191:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = 2 * _n;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:192:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = &2 * _n;
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:193:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = 23 + &85;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:194:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = &23 + 85;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:195:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = &23 + &85;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:198:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom + 0;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:199:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom + 1;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:200:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom + 2;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:201:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom + 0.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:202:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom + 1.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:203:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom + 2.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:204:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom - 0;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:205:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom - 1;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:206:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom - 2;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:207:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom - 0.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:208:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom - 1.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:209:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom - 2.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:210:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom / 0;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:211:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom / 1;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:212:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom / 2;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:213:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom / 0.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:214:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom / 1.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:215:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom / 2.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:216:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom * 0;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:217:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom * 1;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:218:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom * 2;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:219:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom * 0.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:220:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom * 1.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:221:13
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = Custom * 2.0;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:224:10
|
2022-09-21 12:02:37 -05:00
|
|
|
|
|
|
|
|
LL | _n = -_n;
|
|
|
|
| ^^^
|
|
|
|
|
2022-10-06 02:44:38 -05:00
|
|
|
error: arithmetic operation that can potentially result in unexpected side-effects
|
2022-11-21 13:34:47 -06:00
|
|
|
--> $DIR/arithmetic_side_effects.rs:225:10
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | _n = -&_n;
|
|
|
|
| ^^^^
|
|
|
|
|
2022-12-17 07:12:54 -06:00
|
|
|
error: aborting due to 55 previous errors
|
2022-09-09 06:36:26 -05:00
|
|
|
|