]> git.lizzy.rs Git - rust.git/blob - tests/ui/option_option.stderr
Merge pull request #3265 from mikerite/fix-export
[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:11:13
3    |
4 11 | 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:14:16
11    |
12 14 | 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:18:27
17    |
18 18 | 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:23:30
23    |
24 23 | 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:28:8
29    |
30 28 |     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:32:23
35    |
36 32 |     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:38:22
41    |
42 38 |     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:42:11
47    |
48 42 |     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:43:15
53    |
54 43 |     Struct{x: Option<Option<u8>>},
55    |               ^^^^^^^^^^^^^^^^^^
56
57 error: aborting due to 9 previous errors
58