From 15880b3564efdee02b85230ef906b620a8bf4e0c Mon Sep 17 00:00:00 2001 From: Zack Corr Date: Wed, 31 Oct 2012 13:21:28 +1000 Subject: [PATCH] rusti: Correct by-copy flag --- src/rusti/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rusti/wrapper.rs b/src/rusti/wrapper.rs index 6562d60ecfd..1e98aa81369 100644 --- a/src/rusti/wrapper.rs +++ b/src/rusti/wrapper.rs @@ -14,6 +14,6 @@ extern mod std; -fn print(+result: T) { +fn print(result: T) { io::println(fmt!("%?", result)); }