2018-12-05 14:39:09 +01:00
|
|
|
#![warn(clippy::implicit_return)]
|
2018-12-05 01:59:09 +01:00
|
|
|
|
|
|
|
fn test_end_of_fn() -> bool {
|
|
|
|
if true {
|
|
|
|
// no error!
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::needless_bool)]
|
|
|
|
fn test_if_block() -> bool {
|
|
|
|
if true {
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::match_bool)]
|
2018-12-11 00:59:59 +01:00
|
|
|
#[rustfmt::skip]
|
2018-12-05 01:59:09 +01:00
|
|
|
fn test_match(x: bool) -> bool {
|
|
|
|
match x {
|
|
|
|
true => false,
|
2018-12-11 00:59:59 +01:00
|
|
|
false => { true },
|
2018-12-05 01:59:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-05 14:39:09 +01:00
|
|
|
#[allow(clippy::never_loop)]
|
|
|
|
fn test_loop() -> bool {
|
|
|
|
loop {
|
|
|
|
break true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-16 15:42:02 +01:00
|
|
|
#[allow(clippy::never_loop)]
|
|
|
|
fn test_loop_with_block() -> bool {
|
|
|
|
loop {
|
|
|
|
{
|
|
|
|
break true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::never_loop)]
|
|
|
|
fn test_loop_with_nests() -> bool {
|
|
|
|
loop {
|
|
|
|
if true {
|
2018-12-16 22:20:05 +01:00
|
|
|
break true;
|
2018-12-27 16:17:45 +01:00
|
|
|
} else {
|
2018-12-16 22:20:05 +01:00
|
|
|
let _ = true;
|
2018-12-16 15:42:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-05 01:59:09 +01:00
|
|
|
fn test_closure() {
|
2018-12-11 00:59:59 +01:00
|
|
|
#[rustfmt::skip]
|
|
|
|
let _ = || { true };
|
2018-12-05 01:59:09 +01:00
|
|
|
let _ = || true;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = test_end_of_fn();
|
|
|
|
let _ = test_if_block();
|
|
|
|
let _ = test_match(true);
|
2018-12-05 14:39:09 +01:00
|
|
|
let _ = test_loop();
|
2018-12-16 15:42:02 +01:00
|
|
|
let _ = test_loop_with_block();
|
|
|
|
let _ = test_loop_with_nests();
|
2018-12-05 01:59:09 +01:00
|
|
|
test_closure();
|
|
|
|
}
|