rust/tests/ui/implicit_return.rs

81 lines
1.5 KiB
Rust
Raw Normal View History

2018-12-05 08:59:09 +08:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![warn(clippy::implicit_return)]
2018-12-05 08:59:09 +08: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)]
#[rustfmt::skip]
2018-12-05 08:59:09 +08:00
fn test_match(x: bool) -> bool {
match x {
true => false,
false => { true },
2018-12-05 08:59:09 +08:00
}
}
#[allow(clippy::never_loop)]
fn test_loop() -> bool {
loop {
break true;
}
}
2018-12-16 22:42:02 +08: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-17 05:20:05 +08:00
break true;
2018-12-16 22:42:02 +08:00
}
else {
2018-12-17 05:20:05 +08:00
let _ = true;
2018-12-16 22:42:02 +08:00
}
}
}
2018-12-05 08:59:09 +08:00
fn test_closure() {
#[rustfmt::skip]
let _ = || { true };
2018-12-05 08:59:09 +08:00
let _ = || true;
}
fn main() {
let _ = test_end_of_fn();
let _ = test_if_block();
let _ = test_match(true);
let _ = test_loop();
2018-12-16 22:42:02 +08:00
let _ = test_loop_with_block();
let _ = test_loop_with_nests();
2018-12-05 08:59:09 +08:00
test_closure();
}