rust-clippy/tests/ui-toml/decimal_literal_representation/decimal_literal_representation.fixed

6 lines
181 B
Rust

#![warn(clippy::decimal_literal_representation)]
fn main() {
let _ = 8388608;
let _ = 0x00FF_FFFF;
//~^ ERROR: integer literal has a better hexadecimal representation
}