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

7 lines
181 B
Rust
Raw Normal View History

2023-09-24 07:56:40 -05:00
#![warn(clippy::decimal_literal_representation)]
fn main() {
let _ = 8388608;
let _ = 0x00FF_FFFF;
//~^ ERROR: integer literal has a better hexadecimal representation
}