mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
6 lines
181 B
Rust
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
|
|
}
|