librustc: Stop parsing modes and remove them entirely from the language

This commit is contained in:
Patrick Walton
2013-05-07 14:20:56 -07:00
parent 99daec602f
commit 49a66a5c5a
22 changed files with 78 additions and 73 deletions

View File

@@ -81,6 +81,6 @@ fn frame_address(f: &fn(x: *u8)) {
pub mod rusti {
#[abi = "rust-intrinsic"]
pub extern "rust-intrinsic" {
pub fn frame_address(+f: &once fn(x: *u8));
pub fn frame_address(f: &once fn(x: *u8));
}
}