about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-07-10 09:33:54 -0700
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2017-07-28 15:46:23 +0200
commitfacabcb85ef4e49ecc83ca942c38ade3dd70a5cf (patch)
tree61d0278289f5d4cad3e495a3f6b5095816067100 /src
parent55bb1c08d3baaae57777453f7c3b054f74059b88 (diff)
downloadrust-facabcb85ef4e49ecc83ca942c38ade3dd70a5cf.tar.gz
rust-facabcb85ef4e49ecc83ca942c38ade3dd70a5cf.zip
Fill in generator tracking issue in a few more locations
Diffstat (limited to 'src')
-rw-r--r--src/liballoc/boxed.rs2
-rw-r--r--src/libcore/ops/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 079a525f951..eae8da8dab9 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -785,7 +785,7 @@ impl<T: ?Sized> AsMut<T> for Box<T> {
     }
 }
 
-#[unstable(feature = "generator_trait", issue = "0")]
+#[unstable(feature = "generator_trait", issue = "43122")]
 impl<T, U> Generator<U> for Box<T>
     where T: Generator<U> + ?Sized
 {
diff --git a/src/libcore/ops/mod.rs b/src/libcore/ops/mod.rs
index a51b1911028..0f415a60c80 100644
--- a/src/libcore/ops/mod.rs
+++ b/src/libcore/ops/mod.rs
@@ -190,7 +190,7 @@ pub use self::range::{RangeInclusive, RangeToInclusive};
 #[unstable(feature = "try_trait", issue = "42327")]
 pub use self::try::Try;
 
-#[unstable(feature = "generator_trait", issue = "0")]
+#[unstable(feature = "generator_trait", issue = "43122")]
 pub use self::generator::{Generator, State};
 
 #[unstable(feature = "placement_new_protocol", issue = "27779")]