Auto merge of #24888 - tamird:snapshot, r=alexcrichton

r? @alexcrichton cc @brson
This commit is contained in:
bors
2015-04-29 02:16:01 +00:00
89 changed files with 29 additions and 397 deletions

View File

@@ -13,7 +13,6 @@
#![feature(box_syntax)]
#![feature(unboxed_closures)]
#![feature(unsafe_destructor)]
#![feature(core)]
#![feature(test)]
#![feature(rand)]

View File

@@ -44,8 +44,7 @@ fn test_get_resource() {
i: Rc<RefCell<isize>>,
}
#[unsafe_destructor]
impl Drop for R {
impl Drop for R {
fn drop(&mut self) {
let ii = &*self.i;
let i = *ii.borrow();