about summary refs log tree commit diff
path: root/src/test/ui/iterators/iter-step-overflow-ndebug.rs
blob: a0ad92071b66cf9a7442a1ea06b1399b4ff975b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
// compile-flags: -C debug_assertions=no

fn main() {
    let mut it = u8::max_value()..;
    assert_eq!(it.next().unwrap(), 255);
    assert_eq!(it.next().unwrap(), u8::min_value());

    let mut it = i8::max_value()..;
    assert_eq!(it.next().unwrap(), 127);
    assert_eq!(it.next().unwrap(), i8::min_value());
}