mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
315 B
Rust
17 lines
315 B
Rust
//@ run-pass
|
|
fn main() {
|
|
// Simplified test case
|
|
let _ = || 0..=1;
|
|
|
|
// Original test case
|
|
let full_length = 1024;
|
|
let range = {
|
|
// do some stuff, omit here
|
|
None
|
|
};
|
|
|
|
let range = range.map(|(s, t)| s..=t).unwrap_or(0..=(full_length-1));
|
|
|
|
assert_eq!(range, 0..=1023);
|
|
}
|