summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-48006.rs
blob: cfef270e5a67c9643c39371c3d751afb60d5dfa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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());
}