]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_unit.rs
Auto merge of #4314 - chansuke:add-negation-to-is_empty, r=flip1995
[rust.git] / tests / ui / unused_unit.rs
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
14 struct Unitter;
15 impl Unitter {
16     // try to disorient the lint with multiple unit returns and newlines
17     #[allow(clippy::no_effect)]
18     pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) ->
19         ()
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 }