From 2367cafe9d3f34fe38fa062b4d9f26bd1190a74e Mon Sep 17 00:00:00 2001 From: Alex Burka Date: Wed, 26 Aug 2015 19:07:44 -0400 Subject: [PATCH] fix unstable issue ref for Unsize It was pointing at the issue for `placement_new_protocol`. --- src/libcore/marker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { // Empty.