]> git.lizzy.rs Git - rust.git/blob - src/test/ui/label/label-underscore.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / label / label-underscore.rs
1 fn main() {
2     '_: loop { //~ ERROR invalid label name `'_`
3         break '_ //~ ERROR invalid label name `'_`
4     }
5 }