2019-09-20 02:07:13 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
2018-12-05 07:39:09 -06:00
|
|
|
#![warn(clippy::implicit_return)]
|
2019-09-20 02:07:13 -05:00
|
|
|
#![allow(clippy::needless_return, unused)]
|
2018-12-04 18:59:09 -06:00
|
|
|
|
|
|
|
fn test_end_of_fn() -> bool {
|
|
|
|
if true {
|
|
|
|
// no error!
|
|
|
|
return true;
|
|
|
|
}
|
2019-07-15 09:02:50 -05:00
|
|
|
|
2018-12-04 18:59:09 -06:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::needless_bool)]
|
|
|
|
fn test_if_block() -> bool {
|
2021-03-12 08:30:50 -06:00
|
|
|
if true { true } else { false }
|
2018-12-04 18:59:09 -06:00
|
|
|
}
|
|
|
|
|
2018-12-10 17:59:59 -06:00
|
|
|
#[rustfmt::skip]
|
2018-12-04 18:59:09 -06:00
|
|
|
fn test_match(x: bool) -> bool {
|
|
|
|
match x {
|
|
|
|
true => false,
|
2018-12-10 17:59:59 -06:00
|
|
|
false => { true },
|
2018-12-04 18:59:09 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-02 19:36:49 -05:00
|
|
|
#[allow(clippy::needless_return)]
|
2019-01-20 06:45:22 -06:00
|
|
|
fn test_match_with_unreachable(x: bool) -> bool {
|
|
|
|
match x {
|
|
|
|
true => return false,
|
|
|
|
false => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-05 07:39:09 -06:00
|
|
|
#[allow(clippy::never_loop)]
|
|
|
|
fn test_loop() -> bool {
|
|
|
|
loop {
|
|
|
|
break true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-16 08:42:02 -06: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 15:20:05 -06:00
|
|
|
break true;
|
2018-12-27 09:17:45 -06:00
|
|
|
} else {
|
2018-12-16 15:20:05 -06:00
|
|
|
let _ = true;
|
2018-12-16 08:42:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-20 06:45:22 -06:00
|
|
|
#[allow(clippy::redundant_pattern_matching)]
|
|
|
|
fn test_loop_with_if_let() -> bool {
|
|
|
|
loop {
|
|
|
|
if let Some(x) = Some(true) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:59:09 -06:00
|
|
|
fn test_closure() {
|
2018-12-10 17:59:59 -06:00
|
|
|
#[rustfmt::skip]
|
|
|
|
let _ = || { true };
|
2018-12-04 18:59:09 -06:00
|
|
|
let _ = || true;
|
|
|
|
}
|
|
|
|
|
2019-07-15 09:02:50 -05:00
|
|
|
fn test_panic() -> bool {
|
|
|
|
panic!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_return_macro() -> String {
|
|
|
|
format!("test {}", "test")
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:59:09 -06:00
|
|
|
fn main() {
|
|
|
|
let _ = test_end_of_fn();
|
|
|
|
let _ = test_if_block();
|
|
|
|
let _ = test_match(true);
|
2019-01-20 06:45:22 -06:00
|
|
|
let _ = test_match_with_unreachable(true);
|
2018-12-05 07:39:09 -06:00
|
|
|
let _ = test_loop();
|
2018-12-16 08:42:02 -06:00
|
|
|
let _ = test_loop_with_block();
|
|
|
|
let _ = test_loop_with_nests();
|
2019-01-20 06:45:22 -06:00
|
|
|
let _ = test_loop_with_if_let();
|
2018-12-04 18:59:09 -06:00
|
|
|
test_closure();
|
2019-07-15 09:02:50 -05:00
|
|
|
let _ = test_return_macro();
|
2018-12-04 18:59:09 -06:00
|
|
|
}
|