rust-clippy/tests/ui/unused_labels.rs

36 lines
496 B
Rust
Raw Normal View History

2017-09-18 10:47:33 +00:00
2016-03-01 14:15:39 +00:00
#![allow(dead_code, items_after_statements, never_loop)]
#![warn(unused_label)]
2016-03-01 14:15:39 +00:00
fn unused_label() {
2017-02-08 13:58:07 +00:00
'label: for i in 1..2 {
2016-03-01 14:15:39 +00:00
if i > 4 { continue }
}
}
fn foo() {
'same_label_in_two_fns: loop {
break 'same_label_in_two_fns;
}
}
fn bla() {
2017-02-08 13:58:07 +00:00
'a: loop { break }
2016-03-01 14:15:39 +00:00
fn blub() {}
}
fn main() {
'a: for _ in 0..10 {
while let Some(42) = None {
continue 'a;
}
}
2017-02-08 13:58:07 +00:00
'same_label_in_two_fns: loop {
2016-03-01 14:15:39 +00:00
let _ = 1;
}
}