Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
10
tests/ui/iterators/iter-position-overflow-ndebug.rs
Normal file
10
tests/ui/iterators/iter-position-overflow-ndebug.rs
Normal file
|
@ -0,0 +1,10 @@
|
|||
// run-pass
|
||||
// only-32bit too impatient for 2⁶⁴ items
|
||||
// compile-flags: -C debug_assertions=no -C opt-level=3
|
||||
|
||||
fn main() {
|
||||
let n = usize::MAX as u64;
|
||||
assert_eq!((0..).by_ref().position(|i| i >= n), Some(usize::MAX));
|
||||
assert_eq!((0..).by_ref().position(|i| i > n), Some(0));
|
||||
assert_eq!((0..=n + 1).by_ref().position(|_| false), None);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue