rust/tests/ui-toml/decimal_literal_representation/decimal_literal_representation.rs
2023-09-24 15:19:18 +02:00

7 lines
178 B
Rust

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