blob: 634acab8d47c7650006b0bdc1c2bd23abd27ce13 [file] [log] [blame]
// Regression test for #62312
//@ check-pass
fn main() {
let _ = loop {
break Box::new(()) as Box<dyn Send>;
};
}