librustc: Remove copy expressions from the language.

This commit is contained in:
Patrick Walton
2013-07-09 19:32:09 -07:00
parent 99b33f7219
commit 99d44d24c7
21 changed files with 13 additions and 103 deletions

View File

@@ -1344,7 +1344,6 @@ pub fn print_expr(s: @ps, expr: &ast::expr) {
ibox(s, 0u);
print_block(s, blk);
}
ast::expr_copy(e) => { word_space(s, "copy"); print_expr(s, e); }
ast::expr_assign(lhs, rhs) => {
print_expr(s, lhs);
space(s.s);