rust/tests/ui/implicit_return.rs

98 lines
1.7 KiB
Rust
Raw Normal View History

// run-rustfix
#![warn(clippy::implicit_return)]
#![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;
}
2018-12-04 18:59:09 -06:00
true
}
#[allow(clippy::needless_bool)]
fn test_if_block() -> bool {
if true { true } else { false }
2018-12-04 18:59:09 -06:00
}
#[rustfmt::skip]
2018-12-04 18:59:09 -06:00
fn test_match(x: bool) -> bool {
match x {
true => false,
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!(),
}
}
#[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;
} 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() {
#[rustfmt::skip]
let _ = || { true };
2018-12-04 18:59:09 -06:00
let _ = || true;
}
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);
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();
let _ = test_return_macro();
2018-12-04 18:59:09 -06:00
}