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-count-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-count-overflow-debug.rs')
| -rw-r--r-- | src/test/ui/iterators/iter-count-overflow-debug.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/iterators/iter-count-overflow-debug.rs b/src/test/ui/iterators/iter-count-overflow-debug.rs new file mode 100644 index 00000000000..1e14142c5a6 --- /dev/null +++ b/src/test/ui/iterators/iter-count-overflow-debug.rs @@ -0,0 +1,16 @@ +// 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() { + assert_eq!((0..MAX).by_ref().count(), MAX); + + let r = panic::catch_unwind(|| { + (0..=MAX).by_ref().count() + }); + assert!(r.is_err()); +} |
