mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
319 B
Rust
16 lines
319 B
Rust
// run-pass
|
|
|
|
#![feature(step_trait)]
|
|
|
|
use std::iter::Step;
|
|
|
|
#[cfg(target_pointer_width = "16")]
|
|
fn main() {
|
|
assert!(Step::steps_between(&0u32, &u32::MAX).is_none());
|
|
}
|
|
|
|
#[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
|
|
fn main() {
|
|
assert!(Step::steps_between(&0u32, &u32::MAX).is_some());
|
|
}
|