mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
59 lines
1.7 KiB
Text
59 lines
1.7 KiB
Text
error: use of / has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:10:14
|
|
|
|
|
LL | Self(self.0 / rhs.0)
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::integer-division-remainder-used` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::integer_division_remainder_used)]`
|
|
|
|
error: use of % has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:17:14
|
|
|
|
|
LL | Self(self.0 % rhs.0)
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: use of / has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:25:13
|
|
|
|
|
LL | let c = a / b;
|
|
| ^^^^^
|
|
|
|
error: use of % has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:26:13
|
|
|
|
|
LL | let d = a % b;
|
|
| ^^^^^
|
|
|
|
error: use of / has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:27:13
|
|
|
|
|
LL | let e = &a / b;
|
|
| ^^^^^^
|
|
|
|
error: use of % has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:28:13
|
|
|
|
|
LL | let f = a % &b;
|
|
| ^^^^^^
|
|
|
|
error: use of / has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:29:13
|
|
|
|
|
LL | let g = &a / &b;
|
|
| ^^^^^^^
|
|
|
|
error: use of % has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:30:13
|
|
|
|
|
LL | let h = &10 % b;
|
|
| ^^^^^^^
|
|
|
|
error: use of / has been disallowed in this context
|
|
--> tests/ui/integer_division_remainder_used.rs:31:13
|
|
|
|
|
LL | let i = a / &4;
|
|
| ^^^^^^
|
|
|
|
error: aborting due to 9 previous errors
|
|
|