Skip to content

Commit 896cb36

Browse files
committed
auto merge of #21082 : brson/rust/finally, r=alexcrichton
No in-tree users. Ugly interface. Closes #14332. I just happened to notice that this module still lives and has no users. Assuming we don't want it. r? @aturon cc @alexcrichton
2 parents d52398e + f0fe4bb commit 896cb36

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

src/libcore/finally.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@
3232
//! # }
3333
//! ```
3434
35-
#![unstable]
35+
#![deprecated = "It is unclear if this module is more robust than implementing \
36+
Drop on a custom type, and this module is being removed with no \
37+
replacement. Use a custom Drop implementation to regain existing \
38+
functionality."]
39+
#![allow(deprecated)]
3640

3741
use ops::{Drop, FnMut, FnOnce};
3842

src/test/run-pass/backtrace.rs

+11-6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
// ignore-windows FIXME #13259
1313

1414
#![feature(unboxed_closures)]
15+
#![feature(unsafe_destructor)]
1516

1617
use std::os;
1718
use std::io::process::Command;
18-
use std::finally::Finally;
1919
use std::str;
20+
use std::ops::{Drop, FnMut, FnOnce};
2021

2122
#[inline(never)]
2223
fn foo() {
@@ -28,11 +29,15 @@ fn foo() {
2829

2930
#[inline(never)]
3031
fn double() {
31-
(|&mut:| {
32-
panic!("once");
33-
}).finally(|| {
34-
panic!("twice");
35-
})
32+
struct Double;
33+
34+
impl Drop for Double {
35+
fn drop(&mut self) { panic!("twice") }
36+
}
37+
38+
let _d = Double;
39+
40+
panic!("once");
3641
}
3742

3843
fn runtest(me: &str) {

0 commit comments

Comments
 (0)