]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/hex_literal_upper.rs
Rollup merge of #107166 - petrochenkov:nooptable, r=oli-obk
[rust.git] / src / tools / rustfmt / tests / source / hex_literal_upper.rs
1 // rustfmt-hex_literal_case: Upper
2 fn main() {
3     let h1 = 0xCaFE_5ea7;
4     let h2 = 0xCAFE_F00Du32;
5 }