]> git.lizzy.rs Git - rust.git/blob - tests/ui/option_option.stderr
Auto merge of #3529 - matthiaskrgr:rustfmt_tests, r=phansch
[rust.git] / tests / ui / option_option.stderr
1 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2   --> $DIR/option_option.rs:10:13
3    |
4 10 | fn input(_: Option<Option<u8>>) {}
5    |             ^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::option-option` implied by `-D warnings`
8
9 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
10   --> $DIR/option_option.rs:12:16
11    |
12 12 | fn output() -> Option<Option<u8>> {
13    |                ^^^^^^^^^^^^^^^^^^
14
15 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
16   --> $DIR/option_option.rs:16:27
17    |
18 16 | fn output_nested() -> Vec<Option<Option<u8>>> {
19    |                           ^^^^^^^^^^^^^^^^^^
20
21 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
22   --> $DIR/option_option.rs:21:30
23    |
24 21 | fn output_nested_nested() -> Option<Option<Option<u8>>> {
25    |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^
26
27 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
28   --> $DIR/option_option.rs:26:8
29    |
30 26 |     x: Option<Option<u8>>,
31    |        ^^^^^^^^^^^^^^^^^^
32
33 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
34   --> $DIR/option_option.rs:30:23
35    |
36 30 |     fn struct_fn() -> Option<Option<u8>> {
37    |                       ^^^^^^^^^^^^^^^^^^
38
39 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
40   --> $DIR/option_option.rs:36:22
41    |
42 36 |     fn trait_fn() -> Option<Option<u8>>;
43    |                      ^^^^^^^^^^^^^^^^^^
44
45 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
46   --> $DIR/option_option.rs:40:11
47    |
48 40 |     Tuple(Option<Option<u8>>),
49    |           ^^^^^^^^^^^^^^^^^^
50
51 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
52   --> $DIR/option_option.rs:41:17
53    |
54 41 |     Struct { x: Option<Option<u8>> },
55    |                 ^^^^^^^^^^^^^^^^^^
56
57 error: aborting due to 9 previous errors
58