]> git.proxmox.com Git - rustc.git/blob - src/test/ui/label/label-beginning-with-underscore.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / label / label-beginning-with-underscore.rs
1 // check-pass
2
3 #![deny(unused_labels)]
4
5 fn main() {
6 // `unused_label` shouldn't warn labels beginning with `_`
7 '_unused: loop {
8 break;
9 }
10 }