DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-1 / tests / ui / async-await / issue-73541-1.rs
123456789101112
//@ edition:2018 fn main() { 'a: loop { async { loop { continue 'a //~^ ERROR use of unreachable label `'a` } }; } }