rust/tests/ui/iterators/iter-sum-overflow-overflow-checks.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
578 B
Rust
Raw Normal View History

// run-pass
// needs-unwind
// compile-flags: -C overflow-checks
use std::panic;
fn main() {
let r = panic::catch_unwind(|| {
2020-06-02 07:59:11 +00:00
[1, i32::MAX].iter().sum::<i32>();
});
assert!(r.is_err());
let r = panic::catch_unwind(|| {
2020-06-02 07:59:11 +00:00
[2, i32::MAX].iter().product::<i32>();
});
assert!(r.is_err());
let r = panic::catch_unwind(|| {
2020-06-02 07:59:11 +00:00
[1, i32::MAX].iter().cloned().sum::<i32>();
});
assert!(r.is_err());
let r = panic::catch_unwind(|| {
2020-06-02 07:59:11 +00:00
[2, i32::MAX].iter().cloned().product::<i32>();
});
assert!(r.is_err());
}