about summary refs log tree commit diff
path: root/src/libcore/num
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-03-18 16:58:38 +0100
committerSimon Sapin <simon.sapin@exyr.org>2018-03-18 16:58:38 +0100
commita23f685296b2edd59acc998411340184b958ec82 (patch)
tree4f9ac3eac0150f95514490ecd410f977bed11877 /src/libcore/num
parent73c053786dde55059932b9ebcd4a40edf89eae15 (diff)
downloadrust-a23f685296b2edd59acc998411340184b958ec82.tar.gz
rust-a23f685296b2edd59acc998411340184b958ec82.zip
num::NonZero* types now have their own tracking issue: #49137
Fixes #27730
Diffstat (limited to 'src/libcore/num')
-rw-r--r--src/libcore/num/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs
index 84f6ab9b764..2ffcb9e95e2 100644
--- a/src/libcore/num/mod.rs
+++ b/src/libcore/num/mod.rs
@@ -92,7 +92,7 @@ macro_rules! nonzero_integers {
 }
 
 nonzero_integers! {
-    #[unstable(feature = "nonzero", issue = "27730")]
+    #[unstable(feature = "nonzero", issue = "49137")]
     NonZeroU8(u8); NonZeroI8(i8);
     NonZeroU16(u16); NonZeroI16(i16);
     NonZeroU32(u32); NonZeroI32(i32);
@@ -103,7 +103,7 @@ nonzero_integers! {
 nonzero_integers! {
     // Change this to `#[unstable(feature = "i128", issue = "35118")]`
     // if other NonZero* integer types are stabilizied before 128-bit integers
-    #[unstable(feature = "nonzero", issue = "27730")]
+    #[unstable(feature = "nonzero", issue = "49137")]
     NonZeroU128(u128); NonZeroI128(i128);
 }