diff --git a/src/libextra/future.rs b/src/libextra/future.rs index 74a551c6f6d..55e003de9da 100644 --- a/src/libextra/future.rs +++ b/src/libextra/future.rs @@ -37,15 +37,6 @@ pub struct Future { priv state: FutureState, } -// n.b. It should be possible to get rid of this. -// Add a test, though -- tjc -// FIXME(#2829) -- futures should not be copyable, because they close -// over ~fn's that have pipes and so forth within! -#[unsafe_destructor] -impl Drop for Future { - fn drop(&mut self) {} -} - enum FutureState { Pending(~fn() -> A), Evaluating, diff --git a/src/test/compile-fail/future_not_copyable.rs b/src/test/compile-fail/future_not_copyable.rs new file mode 100644 index 00000000000..7ffa76d4096 --- /dev/null +++ b/src/test/compile-fail/future_not_copyable.rs @@ -0,0 +1,19 @@ +// Copyright 2013 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +extern mod extra; + +use extra::future; + +fn main() { + let f = future::from_value(()); + let g = f; + f.unwrap(); //~ ERROR use of moved value +}