diff options
| author | Alex Burka <durka42+github@gmail.com> | 2015-08-26 19:07:44 -0400 |
|---|---|---|
| committer | Alex Burka <durka42+github@gmail.com> | 2015-08-26 19:07:44 -0400 |
| commit | 2367cafe9d3f34fe38fa062b4d9f26bd1190a74e (patch) | |
| tree | e7078ad08ed4131890a24cd9673b89acf8836bfe | |
| parent | 1c3b19d69d87a1d2e1a32be9ba80042458c5f0cc (diff) | |
| download | rust-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.rs | 2 |
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. |
