Description
unseparated_literal_suffix
and separated_literal_suffix
are both market as restriction
but they conflict with each other when using -D clippy::restriction
.
| 34 | let a = 0u8; | ^^^ help: add an underscore: `0_u8` | = note: `-D clippy::unseparated-literal-suffix` implied by `-D clippy::restriction` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unseparated_literal_suffix
| 34 | let a = 0_u8; | ^^^^ help: remove the underscore: `0u8` | = note: `-D clippy::separated-literal-suffix` implied by `-D clippy::restriction` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#separated_literal_suffix
I think it is clear that such conflict is pretty much wrong
Version
No response
Additional Labels
No response