Last active
December 16, 2015 15:19
-
-
Save skinner/5455558 to your computer and use it in GitHub Desktop.
rust "loan...conflicts with prior loan" errors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use core::hashmap::HashMap; | |
fn main() { | |
let mut map : HashMap<~str, int> = HashMap::new(); | |
let keys = ~[~"foo", ~"bar", ~"foo"]; | |
do keys.consume |_, key| { | |
let count; | |
{ | |
let count_option = map.find(&key); | |
match count_option { | |
Some(x) => { count = *x; }, | |
None => { count = 0; } | |
} | |
} | |
map.insert(key, count + 1); | |
} | |
for map.each |&key, &count| { | |
println(fmt!("%?: %?", key, count)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now I get a "task ... ran out of stack" error when I run the compiled program.
rustc is
rustc 0.6 (ee3789b 2013-04-24 13:33:29 -0700)
that I just built from incoming.