Move run-pass/iterators/* to ui/iterators/
This commit is contained in:
parent
9c53396dde
commit
c4189a0bd9
5 changed files with 0 additions and 0 deletions
22
src/test/ui/iterators/iter-position-overflow-debug.rs
Normal file
22
src/test/ui/iterators/iter-position-overflow-debug.rs
Normal file
|
@ -0,0 +1,22 @@
|
|||
// run-pass
|
||||
// only-32bit too impatient for 2⁶⁴ items
|
||||
// ignore-wasm32-bare compiled with panic=abort by default
|
||||
// compile-flags: -C debug_assertions=yes
|
||||
|
||||
use std::panic;
|
||||
use std::usize::MAX;
|
||||
|
||||
fn main() {
|
||||
let n = MAX as u64;
|
||||
assert_eq!((0..).by_ref().position(|i| i >= n), Some(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());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue