diff options
| author | Josh Stone <jistone@redhat.com> | 2019-07-12 16:09:03 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2019-08-12 15:03:45 -0700 |
| commit | c4189a0bd91af5bd77ba30004992c6fa6a63c23e (patch) | |
| tree | 92b0579aa18b0ababc9836a210a0d4c051a84ad9 /src/test/ui/iterators/iter-position-overflow-debug.rs | |
| parent | 9c53396dde5bff732f9c430537e23416e77325a9 (diff) | |
| download | rust-c4189a0bd91af5bd77ba30004992c6fa6a63c23e.tar.gz rust-c4189a0bd91af5bd77ba30004992c6fa6a63c23e.zip | |
Move run-pass/iterators/* to ui/iterators/
Diffstat (limited to 'src/test/ui/iterators/iter-position-overflow-debug.rs')
| -rw-r--r-- | src/test/ui/iterators/iter-position-overflow-debug.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/ui/iterators/iter-position-overflow-debug.rs b/src/test/ui/iterators/iter-position-overflow-debug.rs new file mode 100644 index 00000000000..68e4646fe2d --- /dev/null +++ b/src/test/ui/iterators/iter-position-overflow-debug.rs @@ -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()); +} |
