summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/short_array_element_width_threshold/greater_than_max_width.rs
blob: 710b6fe7c4ba0c764483e12f539644aca109bf3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// rustfmt-max_width: 20
// rustfmt-short_array_element_width_threshold: 30

fn main() {
    pub const FORMAT_TEST: [u64; 5] = [
        0x0000000000000000,
        0xaaaaaaaaaaaaaaaa,
        0xbbbbbbbbbbbbbbbb,
        0xcccccccccccccccc,
        0xdddddddddddddddd,
    ];
}