about summary refs log tree commit diff
path: root/tests/ui/issues/issue-48006.rs
blob: 1adc76f2a2641c1028a529165a4d222d8fa0822f (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).1.is_none());
}

#[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
fn main() {
    assert!(Step::steps_between(&0u32, &u32::MAX).1.is_some());
}