]> git.lizzy.rs Git - rust.git/blob - tests/ui/needless_return.rs
Merge pull request #3265 from mikerite/fix-export
[rust.git] / tests / ui / needless_return.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10
11 #![feature(tool_lints)]
12
13
14 #![warn(clippy::needless_return)]
15
16 fn test_end_of_fn() -> bool {
17     if true {
18         // no error!
19         return true;
20     }
21     return true;
22 }
23
24 fn test_no_semicolon() -> bool {
25     return true
26 }
27
28 fn test_if_block() -> bool {
29     if true {
30         return true;
31     } else {
32         return false;
33     }
34 }
35
36 fn test_match(x: bool) -> bool {
37     match x {
38         true => return false,
39         false => {
40             return true;
41         }
42     }
43 }
44
45 fn test_closure() {
46     let _ = || {
47         return true;
48     };
49     let _ = || return true;
50 }
51
52 fn main() {
53     let _ = test_end_of_fn();
54     let _ = test_no_semicolon();
55     let _ = test_if_block();
56     let _ = test_match(true);
57     test_closure();
58 }