blob: 33e708769badb7db38f32013e19a6fc517ac6483 (
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..;
assert_eq!(it.next().unwrap(), 255);
assert_eq!(it.next().unwrap(), u8::MIN);
let mut it = i8::MAX..;
assert_eq!(it.next().unwrap(), 127);
assert_eq!(it.next().unwrap(), i8::MIN);
}
|