about summary refs log tree commit diff
path: root/library/core/src/num/mod.rs
diff options
context:
space:
mode:
authorEthan Brierley <ethanboxx@gmail.com>2021-05-18 10:37:28 +0100
committerEthan Brierley <ethanboxx@gmail.com>2021-06-14 09:58:32 +0100
commitb59f7d9662b47e1d62f09ec448dbda321fa5a406 (patch)
tree451307dee2ad7bb8834f86b90e3ceb05bf2ff551 /library/core/src/num/mod.rs
parent14831568d506b5ee7be3e7d5a2f029ce9048b609 (diff)
downloadrust-b59f7d9662b47e1d62f09ec448dbda321fa5a406.tar.gz
rust-b59f7d9662b47e1d62f09ec448dbda321fa5a406.zip
stabilize `int_error_matching`
Diffstat (limited to 'library/core/src/num/mod.rs')
-rw-r--r--library/core/src/num/mod.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/library/core/src/num/mod.rs b/library/core/src/num/mod.rs
index 6032dc9a2d3..464f241982d 100644
--- a/library/core/src/num/mod.rs
+++ b/library/core/src/num/mod.rs
@@ -57,12 +57,7 @@ pub use nonzero::{NonZeroI128, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI8, No
 #[stable(feature = "try_from", since = "1.34.0")]
 pub use error::TryFromIntError;
 
-#[unstable(
-    feature = "int_error_matching",
-    reason = "it can be useful to match errors when making error messages \
-              for integer parsing",
-    issue = "22639"
-)]
+#[stable(feature = "int_error_matching", since = "1.54.0")]
 pub use error::IntErrorKind;
 
 macro_rules! usize_isize_to_xe_bytes_doc {