Skip to content

Commit 3fffcd3

Browse files
authored
Rollup merge of rust-lang#60185 - NieDzejkob:int-error-kind-reexport, r=rkruppe
Reexport IntErrorKind in std Currently `IntErrorKind` can only be found in `core`. @Centril confirmed on Discord that this is unintentional (should I r? him in this situation?). Should there be a test for this? As far as this *specific* situation goes, I don't think so, I'll risk it and say that there's no way this regresses. However, it might be a good idea to have some tool detect public items in `core` that are not reexported in `std`. Does this belong in tidy, or should that be a separate tool? Is there some rustc-specific *linter*? Unless that's entirely a dumb idea, this should probably get an issue. Note: My local build hasn't finished yet, but it's well past the point where I would expect problems.
2 parents a4ef188 + 7af0fcc commit 3fffcd3

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/libstd/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@
267267
#![feature(hash_raw_entry)]
268268
#![feature(hashmap_internals)]
269269
#![feature(int_error_internals)]
270+
#![feature(int_error_matching)]
270271
#![feature(integer_atomics)]
271272
#![feature(lang_items)]
272273
#![feature(libc)]

src/libstd/num.rs

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ pub use core::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128,
1616
#[stable(feature = "signed_nonzero", since = "1.34.0")]
1717
pub use core::num::{NonZeroI8, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI128, NonZeroIsize};
1818

19+
#[unstable(feature = "int_error_matching",
20+
reason = "it can be useful to match errors when making error messages \
21+
for integer parsing",
22+
issue = "22639")]
23+
pub use core::num::IntErrorKind;
24+
1925
#[cfg(test)] use crate::fmt;
2026
#[cfg(test)] use crate::ops::{Add, Sub, Mul, Div, Rem};
2127

0 commit comments

Comments
 (0)