]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_unit.fixed
map_unit_fn: rename tests to fixable
[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 fn main() {
38     let u = Unitter;
39     assert_eq!(u.get_unit(|| {}, return_unit), u.into());
40     return_unit();
41     loop {
42         break;
43     }
44     return;
45 }
46
47 // https://github.com/rust-lang/rust-clippy/issues/4076
48 fn foo() {
49     macro_rules! foo {
50         (recv($r:expr) -> $res:pat => $body:expr) => {
51             $body
52         }
53     }
54
55     foo! {
56         recv(rx) -> _x => ()
57     }
58 }