diff options
| author | bors <bors@rust-lang.org> | 2014-12-22 00:12:47 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-12-22 00:12:47 +0000 |
| commit | 34d680009205de2302b902d8f9f5f7ae7a042f1a (patch) | |
| tree | 2b7eb92a4d5a0d997871020964fe539390737dd3 /src/libcore/array.rs | |
| parent | 1bdcfd64629930c09b942025e242e51e784c447d (diff) | |
| parent | fb7c08876e7b29c1b9d57df905f3ee0deec46aa1 (diff) | |
| download | rust-34d680009205de2302b902d8f9f5f7ae7a042f1a.tar.gz rust-34d680009205de2302b902d8f9f5f7ae7a042f1a.zip | |
auto merge of #20104 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/libcore/array.rs')
| -rw-r--r-- | src/libcore/array.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs index ffaf35414ea..e85a132ed36 100644 --- a/src/libcore/array.rs +++ b/src/libcore/array.rs @@ -25,7 +25,7 @@ use option::Option; macro_rules! array_impls { ($($N:expr)+) => { $( - #[unstable = "waiting for Clone to stabilize"] + #[stable] impl<T:Copy> Clone for [T, ..$N] { fn clone(&self) -> [T, ..$N] { *self @@ -115,4 +115,3 @@ array_impls! { 20 21 22 23 24 25 26 27 28 29 30 31 32 } - |
