Remove proc types/expressions from the parser, compiler, and

language. Recommend `move||` instead.
This commit is contained in:
Niko Matsakis
2014-11-26 10:07:22 -05:00
parent 9cc8453a78
commit d258d68db6
33 changed files with 91 additions and 321 deletions

View File

@@ -40,15 +40,6 @@ pub struct Closure {
impl Copy for Closure {}
/// The representation of a Rust procedure (`proc()`)
#[repr(C)]
pub struct Procedure {
pub code: *mut (),
pub env: *mut (),
}
impl Copy for Procedure {}
/// The representation of a Rust trait object.
///
/// This struct does not have a `Repr` implementation