summaryrefslogtreecommitdiffstats
path: root/tests/ui/iterators/iter-count-overflow-debug.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/iterators/iter-count-overflow-debug.rs')
-rw-r--r--tests/ui/iterators/iter-count-overflow-debug.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/iterators/iter-count-overflow-debug.rs b/tests/ui/iterators/iter-count-overflow-debug.rs
new file mode 100644
index 000000000..8e59c11e9
--- /dev/null
+++ b/tests/ui/iterators/iter-count-overflow-debug.rs
@@ -0,0 +1,15 @@
+// run-pass
+// only-32bit too impatient for 2⁶⁴ items
+// needs-unwind
+// compile-flags: -C debug_assertions=yes -C opt-level=3
+
+use std::panic;
+
+fn main() {
+ assert_eq!((0..usize::MAX).by_ref().count(), usize::MAX);
+
+ let r = panic::catch_unwind(|| {
+ (0..=usize::MAX).by_ref().count()
+ });
+ assert!(r.is_err());
+}