You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This generates errors for malformed semver versions during the decoding process
rather than later in the convertion to a package id. This also cuts down on the
large number of derived traits to only what's necessary.
Closesrust-lang#54
yaahc
pushed a commit
to yaahc/rust-clippy
that referenced
this issue
Mar 14, 2019
This generates errors for malformed semver versions during the decoding process
rather than later in the convertion to a package id. This also cuts down on the
large number of derived traits to only what's necessary.
Closesrust-lang#54
Patterns to match:
x + 0
,x - 0
,x | 0
,x << 0
,x >> 0
,x ^ 0
,x * 1
,x / 1
,x & -1
(and vice versa, e.g.
0 + x
)Note that
x & x
andx | x
are already handled byeq_op
, so we won't include them hereThe text was updated successfully, but these errors were encountered: