]> git.lizzy.rs Git - rust.git/blob - tests/ui/result_map_unit_fn.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / result_map_unit_fn.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 #![feature(never_type)]
11 #![warn(clippy::result_map_unit_fn)]
12 #![allow(unused)]
13
14 fn do_nothing<T>(_: T) {}
15
16 fn diverge<T>(_: T) -> ! {
17     panic!()
18 }
19
20 fn plus_one(value: usize) -> usize {
21     value + 1
22 }
23
24 struct HasResult {
25     field: Result<usize, usize>,
26 }
27
28 impl HasResult {
29     fn do_result_nothing(self: &Self, value: usize) {}
30
31     fn do_result_plus_one(self: &Self, value: usize) -> usize {
32         value + 1
33     }
34 }
35
36 #[rustfmt::skip]
37 fn result_map_unit_fn() {
38     let x = HasResult { field: Ok(10) };
39
40     x.field.map(plus_one);
41     let _: Result<(), usize> = x.field.map(do_nothing);
42
43     x.field.map(do_nothing);
44
45     x.field.map(do_nothing);
46
47     x.field.map(diverge);
48
49     let captured = 10;
50     if let Ok(value) = x.field { do_nothing(value + captured) };
51     let _: Result<(), usize> = x.field.map(|value| do_nothing(value + captured));
52
53     x.field.map(|value| x.do_result_nothing(value + captured));
54
55     x.field.map(|value| { x.do_result_plus_one(value + captured); });
56
57
58     x.field.map(|value| do_nothing(value + captured));
59
60     x.field.map(|value| { do_nothing(value + captured) });
61
62     x.field.map(|value| { do_nothing(value + captured); });
63
64     x.field.map(|value| { { do_nothing(value + captured); } });
65
66
67     x.field.map(|value| diverge(value + captured));
68
69     x.field.map(|value| { diverge(value + captured) });
70
71     x.field.map(|value| { diverge(value + captured); });
72
73     x.field.map(|value| { { diverge(value + captured); } });
74
75
76     x.field.map(|value| plus_one(value + captured));
77     x.field.map(|value| { plus_one(value + captured) });
78     x.field.map(|value| { let y = plus_one(value + captured); });
79
80     x.field.map(|value| { plus_one(value + captured); });
81
82     x.field.map(|value| { { plus_one(value + captured); } });
83
84
85     x.field.map(|ref value| { do_nothing(value + captured) });
86
87
88     x.field.map(|value| { do_nothing(value); do_nothing(value) });
89
90     x.field.map(|value| if value > 0 { do_nothing(value); do_nothing(value) });
91
92     // Suggestion for the let block should be `{ ... }` as it's too difficult to build a
93     // proper suggestion for these cases
94     x.field.map(|value| {
95         do_nothing(value);
96         do_nothing(value)
97     });
98     x.field.map(|value| { do_nothing(value); do_nothing(value); });
99
100     // The following should suggest `if let Ok(_X) ...` as it's difficult to generate a proper let variable name for them
101     let res: Result<!, usize> = Ok(42).map(diverge);
102     "12".parse::<i32>().map(diverge);
103
104     let res: Result<(), usize> = Ok(plus_one(1)).map(do_nothing);
105
106     // Should suggest `if let Ok(_y) ...` to not override the existing foo variable
107     let y: Result<usize, usize> = Ok(42);
108     y.map(do_nothing);
109 }
110
111 fn main() {}