Closed
Description
and undo the const -> fn changes in https://github.com/rust-lang/rust/pull/53315/files#diff-a4a060a3c734b42317d2b9136d68918eL186
This requires changing applicable methods on NonZero*
from fn
to const fn
, adding the #[rustc_const_unstable="const_nonzero*_methods"]
attribute to all of them and adding some tests ensuring that the methods are not const fn on stable rust.