Uh oh!
There was an error while loading. Please reload this page.
Convert Intos to Froms. - #42227
Conversation
rust-highfive
commented
May 25, 2017
r? @BurntSushi (rust_highfive has picked a reviewer for you, use r? to override) |
BurntSushi
commented
May 25, 2017
As with #42129, I'd still feel better with a crater run. |
Mark-Simulacrum
commented
Jun 4, 2017
Infra team is experimenting.... @bors try |
bors
commented
Jun 4, 2017
Convert Intos to Froms. This is a resubmission of #42129 without `impl<T> From<Vec<T>> for Box<[T]>`.
bors
commented
Jun 4, 2017
💔 Test failed - status-travis |
frewsxcv
commented
Jun 4, 2017
@bors retry travis cancelled one of the builds |
bors
commented
Jun 4, 2017
⌛ Trying commit 30bbcef with merge 98629a9... |
bors
commented
Jun 4, 2017
💔 Test failed - status-travis |
Mark-Simulacrum
commented
Jun 4, 2017
Intentionally canceled build -- we need to land another PR before try builds make sense. |
Mark-Simulacrum
commented
Jun 4, 2017
@bors try Getting artifacts for cargobomb. |
Mark-Simulacrum
commented
Jun 4, 2017
Oh, I guess it needs to retry try? @bors retry |
bors
commented
Jun 4, 2017
⌛ Trying commit 30bbcef with merge 0964ee3... |
frewsxcv
commented
Jun 5, 2017
@bors retry |
brson
commented
Jun 5, 2017
I've deployed a new build of crater. Will try this one. |
brson
commented
Jun 5, 2017
brson
commented
Jun 6, 2017
Messed up the previous commands. Here are the new jobs: |
brson
commented
Jun 6, 2017
arielb1
commented
Jun 13, 2017
Isn't @aturon on vacation right now? I think this PR has been open long enough that we'll just wait for him for the final signoff. |
bors
commented
Jun 15, 2017
☔ The latest upstream changes (presumably #42648) made this pull request unmergeable. Please resolve the merge conflicts. |
clarfonthey
commented
Jun 16, 2017
Small nudge to point out that this can add back the |
ollie27
commented
Jun 17, 2017
Rebased. I've submitted the |
bors
commented
Jun 20, 2017
☔ The latest upstream changes (presumably #42716) made this pull request unmergeable. Please resolve the merge conflicts. |
Convert `Into<Box<[T]>> for Vec<T>` into `From<Vec<T>> for Box<[T]>` As the `collections` crate has been merged into `alloc` in rust-lang#42648 this impl is now possible. This is the final part of rust-lang#42129 missing from rust-lang#42227.
Mark-Simulacrum
commented
Jun 24, 2017
@aturon I think this is ready for merge but not quite sure... |
aidanhs
commented
Jun 28, 2017
I've pinged @aturon, but I suspect he's not going to get to this until next week. |
aturon
commented
Jul 3, 2017
@bors: r+ rollup Thanks! |
bors
commented
Jul 3, 2017
📌 Commit 0d885ef has been approved by |
Convert Intos to Froms. This is a resubmission of rust-lang#42129 without `impl<T> From<Vec<T>> for Box<[T]>`.
Convert Intos to Froms. This is a resubmission of rust-lang#42129 without `impl<T> From<Vec<T>> for Box<[T]>`.
This is a resubmission of #42129 without
impl<T> From<Vec<T>> for Box<[T]>.