stabilize const_nonzero_int_methods

This commit is contained in:
Trevor Spiteri 2020-06-29 10:28:39 +02:00
parent c86039b333
commit 6dfe144bdd
2 changed files with 2 additions and 3 deletions

View file

@ -79,7 +79,8 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s
/// Creates a non-zero if the given value is not zero.
#[$stability]
#[rustc_const_unstable(feature = "const_nonzero_int_methods", issue = "53718")]
#[rustc_const_stable(feature = "const_nonzero_int_methods", since = "1.46.0")]
#[cfg_attr(bootstrap, allow_internal_unstable(const_if_match))]
#[inline]
pub const fn new(n: $Int) -> Option<Self> {
if n != 0 {

View file

@ -1,7 +1,5 @@
// run-pass
#![feature(const_nonzero_int_methods)]
use std::num::NonZeroU8;
const X: NonZeroU8 = unsafe { NonZeroU8::new_unchecked(5) };