Rust

Rust

Made by DeepSource

Found hexadecimal literal with mixed-case letter digits RS-C1007

Anti-pattern
Minor

Hexadecimal literals with mixed-case letter digits look confusing.

Bad practice

let x = 0xabCD;

Recommended

let x = 0xABCD;