rust/tests/source/hex_literal_upper.rs
2021-10-20 00:11:59 -05:00

5 lines
104 B
Rust

// rustfmt-hex_literal_case: Upper
fn main() {
let h1 = 0xCaFE_5ea7;
let h2 = 0xCAFE_F00Du32;
}