summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/decimal_literal_representation/decimal_literal_representation.fixed
blob: 750f3be84c0400cea403379f8d924f7fed797225 (plain)
1
2
3
4
5
6
#![warn(clippy::decimal_literal_representation)]
fn main() {
    let _ = 8388608;
    let _ = 0x00FF_FFFF;
    //~^ ERROR: integer literal has a better hexadecimal representation
}