about summary refs log tree commit diff
path: root/src/test/ui/lint/lint-range-endpoint-overflow.rs
blob: 5d7430007abb3ae18e6eb9e381361c65e9287fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![deny(overflowing_literals)]

fn main() {
    let range_a = 0..256; //~ ERROR range endpoint is out of range for `u8`
    let range_b = 0..=255; // ok
    let range_c = 0..=256; //~ ERROR literal out of range for `u8`
    let range_d = 256..5; //~ ERROR literal out of range for `u8`
    let range_e = 0..257; //~ ERROR literal out of range for `u8`
    let _range_f = 0..256u8;  //~ ERROR range endpoint is out of range for `u8`

    range_a.collect::<Vec<u8>>();
    range_b.collect::<Vec<u8>>();
    range_c.collect::<Vec<u8>>();
    range_d.collect::<Vec<u8>>();
    range_e.collect::<Vec<u8>>();
}