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

7 lines
178 B
Rust
Raw Normal View History

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