diff options
| author | Zack Corr <zack@z0w0.me> | 2012-10-31 13:21:28 +1000 |
|---|---|---|
| committer | Zack Corr <zack@z0w0.me> | 2012-10-31 13:21:28 +1000 |
| commit | 15880b3564efdee02b85230ef906b620a8bf4e0c (patch) | |
| tree | bb9252421b3397579ef3947f3ecf30db5ec79f4a /src | |
| parent | 1d55a5778bc5f0ab1cac0e9f12dcc2f04ddda719 (diff) | |
rusti: Correct by-copy flag
Diffstat (limited to 'src')
| -rw-r--r-- | src/rusti/wrapper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<T>(+result: T) { +fn print<T>(result: T) { io::println(fmt!("%?", result)); } |
