about summary refs log tree commit diff
path: root/src/liballoc
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/liballoc
parent55bb1c08d3baaae57777453f7c3b054f74059b88 (diff)
downloadrust-facabcb85ef4e49ecc83ca942c38ade3dd70a5cf.tar.gz
rust-facabcb85ef4e49ecc83ca942c38ade3dd70a5cf.zip
Fill in generator tracking issue in a few more locations
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 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
 {