This code results in an ICE: ``` fn main() { 'outer: loop { spawn(proc() { loop { break 'outer; } }); } } ```