rust/tests/compile-fail/needless_return.rs

50 lines
1,013 B
Rust
Raw Normal View History

2015-08-11 18:55:07 +02:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(needless_return)]
fn test_end_of_fn() -> bool {
if true {
// no error!
return true;
}
return true; //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
}
fn test_no_semicolon() -> bool {
return true //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
}
fn test_if_block() -> bool {
if true {
return true; //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
} else {
return false; //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
}
}
fn test_match(x: bool) -> bool {
match x {
true => {
return false; //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
}
false => {
return true //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
}
}
}
fn test_closure() {
let _ = || {
return true; //~ERROR unneeded return statement
2015-08-11 18:55:07 +02:00
};
}
fn main() {
let _ = test_end_of_fn();
let _ = test_no_semicolon();
let _ = test_if_block();
let _ = test_match(true);
test_closure();
}