summaryrefslogtreecommitdiffstats
path: root/src/test/ui/iterators/iter-position-overflow-debug.rs
blob: 65124c282412c7de182ceaaf41f931f7eb2dc86e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// run-pass
// only-32bit too impatient for 2⁶⁴ items
// needs-unwind
// ignore-wasm32-bare compiled with panic=abort by default
// compile-flags: -C debug_assertions=yes -C opt-level=3

use std::panic;

fn main() {
    let n = usize::MAX as u64;
    assert_eq!((0..).by_ref().position(|i| i >= n), Some(usize::MAX));

    let r = panic::catch_unwind(|| {
        (0..).by_ref().position(|i| i > n)
    });
    assert!(r.is_err());

    let r = panic::catch_unwind(|| {
        (0..=n + 1).by_ref().position(|_| false)
    });
    assert!(r.is_err());
}