Skip to content

Commit 95c1d81

Browse files
committed
move from_nonzero test from run-pass to libcore
1 parent ac61a9c commit 95c1d81

File tree

2 files changed

+7
-16
lines changed

2 files changed

+7
-16
lines changed

src/libcore/tests/nonzero.rs

+7
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,10 @@ fn test_match_nonzero_const_pattern() {
121121
_ => panic!("Expected the const item as a pattern to match.")
122122
}
123123
}
124+
125+
#[test]
126+
fn test_from_nonzero() {
127+
let nz = NonZeroU32::new(1).unwrap();
128+
let num: u32 = nz.into();
129+
assert_eq!(num, 1u32);
130+
}

src/test/run-pass/nonzero.rs

-16
This file was deleted.

0 commit comments

Comments
 (0)