rust-clippy/tests/ui/diverging_sub_expression.rs

42 lines
876 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::diverging_sub_expression)]
#![allow(clippy::match_same_arms, clippy::overly_complex_bool_expr)]
2018-07-28 15:34:52 +00:00
#[allow(clippy::empty_loop)]
2018-12-09 22:26:16 +00:00
fn diverge() -> ! {
loop {}
}
2016-09-13 10:41:37 +00:00
struct A;
impl A {
2018-12-09 22:26:16 +00:00
fn foo(&self) -> ! {
diverge()
}
2016-09-13 10:41:37 +00:00
}
2018-07-28 15:34:52 +00:00
#[allow(unused_variables, clippy::unnecessary_operation, clippy::short_circuit_statement)]
fn main() {
let b = true;
2017-02-08 13:58:07 +00:00
b || diverge();
b || A.foo();
}
#[allow(dead_code, unused_variables)]
fn foobar() {
loop {
let x = match 5 {
4 => return,
5 => continue,
2017-02-08 13:58:07 +00:00
6 => true || return,
7 => true || continue,
8 => break,
9 => diverge(),
2017-02-08 13:58:07 +00:00
3 => true || diverge(),
10 => match 42 {
99 => return,
_ => true || panic!("boo"),
},
2017-02-08 13:58:07 +00:00
_ => true || break,
};
}
}