Skip to content

Instantly share code, notes, and snippets.

@skinner
Last active December 16, 2015 15:19
Show Gist options
  • Save skinner/5455558 to your computer and use it in GitHub Desktop.
Save skinner/5455558 to your computer and use it in GitHub Desktop.
rust "loan...conflicts with prior loan" errors
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));
}
}
@skinner
Copy link
Author

skinner commented Apr 24, 2013

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment