rusti: Correct by-copy flag

This commit is contained in:
Zack Corr 2012-10-31 13:21:28 +10:00
parent 1d55a5778b
commit 15880b3564
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@
extern mod std;
fn print<T>(+result: T) {
fn print<T>(result: T) {
io::println(fmt!("%?", result));
}