about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Burka <durka42+github@gmail.com>2015-08-26 19:07:44 -0400
committerAlex Burka <durka42+github@gmail.com>2015-08-26 19:07:44 -0400
commit2367cafe9d3f34fe38fa062b4d9f26bd1190a74e (patch)
treee7078ad08ed4131890a24cd9673b89acf8836bfe
parent1c3b19d69d87a1d2e1a32be9ba80042458c5f0cc (diff)
downloadrust-2367cafe9d3f34fe38fa062b4d9f26bd1190a74e.tar.gz
rust-2367cafe9d3f34fe38fa062b4d9f26bd1190a74e.zip
fix unstable issue ref for Unsize
It was pointing at the issue for `placement_new_protocol`.
-rw-r--r--src/libcore/marker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index aa5eda68e98..35dde63e52b 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -45,7 +45,7 @@ pub trait Sized {
 }
 
 /// Types that can be "unsized" to a dynamically sized type.
-#[unstable(feature = "unsize", issue = "27779")]
+#[unstable(feature = "unsize", issue = "27732")]
 #[lang="unsize"]
 pub trait Unsize<T: ?Sized> {
     // Empty.