about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-08-27 18:30:47 +0000
committerbors <bors@rust-lang.org>2015-08-27 18:30:47 +0000
commit17b6fcd4589f678700c71bc88daabb5ba2d80bf0 (patch)
tree177764848e046aa7c1f3b218adcbdf7d8e126eab
parentb28f0b18875601ffaa0cfde2ec0a114bcf0a460b (diff)
parent2367cafe9d3f34fe38fa062b4d9f26bd1190a74e (diff)
downloadrust-17b6fcd4589f678700c71bc88daabb5ba2d80bf0.tar.gz
rust-17b6fcd4589f678700c71bc88daabb5ba2d80bf0.zip
Auto merge of #28031 - durka:patch-6, r=alexcrichton
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.