Closed
Description
rust: upcall fail 'lookup_item: id not found: 52136', /home/bblum/rust/src/rustc/metadata/decoder.rs:96
error: internal compiler error: unexpected failure
Code that worked fine looked like:
unsafe fn ... {
unsafe fn ... { ... }
...map {|...|
...
}
}
Code that produced the crash:
unsafe fn ... {
...map {|...|
unsafe fn ... { ... }
...
}
}
Didn't bother testing without the 'unsafe's.