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
…ust-lang#14115)
Commit 2550530 has extended the
`precedence` lint to include bitmasking and shift operations. The lint
is warn by default, and this generates many hits, especially in embedded
or system code, where it is very idiomatic to use expressions such as `1
<< 3 | 1 << 5` without parentheses.
This commit splits the recent addition into a new lint, which is put
into the "restriction" category, while the original one stays in
"complexity", because mixing bitmasking and arithmetic operations is
less typical.
Fixrust-lang#14097
changelog: [`precedence_bits`]: new lint
quickcheck::arbitrary::results
, "Result<A, B> doesn't implement the Hash trait, so these tests depends on the order of shrunk results. Ug."quickcheck::arbitrary::int
, "Test overflow?"The text was updated successfully, but these errors were encountered: