Uh oh!
There was an error while loading. Please reload this page.
Make UnsafeCell, RefCell, Mutex, and RwLock accept DSTs - #24737
Conversation
rust-highfive
commented
Apr 23, 2015
r? @huonw (rust_highfive has picked a reviewer for you, use r? to override) |
bstrie
commented
Apr 23, 2015
Would this be a backward-compatible change? In other words, is it an argument for cherry-picking #24619 into beta? |
steveklabnik
commented
Apr 23, 2015
It allows strictly more programs, IIRC, and so is backwards compatible. |
nrc
commented
Apr 24, 2015
Doing |
luqmana
commented
May 1, 2015
@bors r+ |
bors
commented
May 1, 2015
📌 Commit 17876ec has been approved by |
This + DST coercions (#24619) would allow code like `Rc<RefCell<Box<Trait>>>` to be simplified to `Rc<RefCell<Trait>>`.
bors
commented
May 1, 2015
bors
commented
May 1, 2015
💔 Test failed - auto-mac-64-opt |
ftxqxd
commented
May 1, 2015
Sorry, I mustn’t have run the tests thoroughly enough. It should be fixed now. r? |
alexcrichton
commented
May 1, 2015
bors
commented
May 1, 2015
⌛ Testing commit aed293a with merge 4389a3b... |
bors
commented
May 1, 2015
💔 Test failed - auto-mac-64-opt |
This + DST coercions (rust-lang#24619) would allow code like `Rc<RefCell<Box<Trait>>>` to be simplified to `Rc<RefCell<Trait>>`.
ftxqxd
commented
May 2, 2015
Ugh, I somehow missed that one. |
alexcrichton
commented
May 2, 2015
bors
commented
May 2, 2015
⌛ Testing commit 57d8289 with merge c512850... |
bors
commented
May 2, 2015
💔 Test failed - auto-linux-64-x-android-t |
ftxqxd
commented
May 2, 2015
The failure doesn’t seem related (and doesn’t occur locally). Is this a known spurious failure? |
alexcrichton
commented
May 3, 2015
@bors: retry On Sat, May 2, 2015 at 1:55 AM, P1start notifications@github.com wrote:
|
bors
commented
May 3, 2015
⌛ Testing commit 57d8289 with merge 1fb4ecc... |
bors
commented
May 3, 2015
💔 Test failed - auto-linux-64-opt |
alexcrichton
commented
May 3, 2015
@bors: retry On Sun, May 3, 2015 at 7:06 AM, bors notifications@github.com wrote:
|
bors
commented
May 3, 2015
This + DST coercions (#24619) would allow code like `Rc<RefCell<Box<Trait>>>` to be simplified to `Rc<RefCell<Trait>>`.
This + DST coercions (#24619) would allow code like
Rc<RefCell<Box<Trait>>>to be simplified toRc<RefCell<Trait>>.