tests/tutorials: Get rid of move.

This commit is contained in:
Luqman Aden 2013-02-15 02:44:18 -08:00
parent e244f103c9
commit 178882c98f
150 changed files with 409 additions and 411 deletions

View file

@ -12,7 +12,7 @@
fn id(x: bool) -> bool { x }
fn call_id() {
let c = move fail!();
let c = fail!();
id(c);
}