We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fn main() { let a = ~"foo"; let f = proc() { println!("{}", a); drop(a) }; (proc() { f(); f(); })() }
understandably crashes on the second f call.
f
Seems similar to #12041 (although no loop required), and #10398.