]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_unit.rs
unused unit lint
[rust.git] / tests / ui / unused_unit.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // run-rustfix
12 // compile-pass
13
14 // The output for humans should just highlight the whole span without showing
15 // the suggested replacement, but we also want to test that suggested
16 // replacement only removes one set of parentheses, rather than naïvely
17 // stripping away any starting or ending parenthesis characters—hence this
18 // test of the JSON error format.
19
20
21 #![deny(clippy::unused_unit)]
22 #![allow(clippy::needless_return)]
23
24 struct Unitter;
25
26 impl Unitter {
27     // try to disorient the lint with multiple unit returns and newlines
28     pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) ->
29         ()
30     where G: Fn() -> () {
31         let _y: &Fn() -> () = &f;
32         (); // this should not lint, as it's not in return type position
33     }
34 }
35
36 impl Into<()> for Unitter {
37     fn into(self) -> () {
38         ()
39     }
40 }
41
42 fn return_unit() -> () { () }
43
44 fn main() {
45     let u = Unitter;
46     assert_eq!(u.get_unit(|| {}, return_unit), u.into());
47     return_unit();
48     loop {
49         break();
50     }
51     return();
52 }