]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_unit.fixed
Auto merge of #4809 - iankronquist:patch-1, r=flip1995
[rust.git] / tests / ui / unused_unit.fixed
1 // run-rustfix
2
3 // The output for humans should just highlight the whole span without showing
4 // the suggested replacement, but we also want to test that suggested
5 // replacement only removes one set of parentheses, rather than naïvely
6 // stripping away any starting or ending parenthesis characters—hence this
7 // test of the JSON error format.
8
9 #![feature(custom_inner_attributes)]
10 #![rustfmt::skip]
11
12 #![deny(clippy::unused_unit)]
13 #![allow(dead_code)]
14
15 struct Unitter;
16 impl Unitter {
17     // try to disorient the lint with multiple unit returns and newlines
18     #[allow(clippy::no_effect)]
19     pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) 
20     where G: Fn() -> () {
21         let _y: &dyn Fn() -> () = &f;
22         (); // this should not lint, as it's not in return type position
23     }
24 }
25
26 impl Into<()> for Unitter {
27     #[rustfmt::skip]
28     fn into(self)  {
29         
30     }
31 }
32
33 fn return_unit()  {  }
34
35 #[allow(clippy::needless_return)]
36 #[allow(clippy::never_loop)]
37 #[allow(clippy::unit_cmp)]
38 fn main() {
39     let u = Unitter;
40     assert_eq!(u.get_unit(|| {}, return_unit), u.into());
41     return_unit();
42     loop {
43         break;
44     }
45     return;
46 }
47
48 // https://github.com/rust-lang/rust-clippy/issues/4076
49 fn foo() {
50     macro_rules! foo {
51         (recv($r:expr) -> $res:pat => $body:expr) => {
52             $body
53         }
54     }
55
56     foo! {
57         recv(rx) -> _x => ()
58     }
59 }