]> git.lizzy.rs Git - rust.git/blob - tests/ui/option_option.stderr
Merge pull request #2984 from flip1995/single_char_pattern
[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:1:13
3   |
4 1 | fn input(_: Option<Option<u8>>) {
5   |             ^^^^^^^^^^^^^^^^^^
6   |
7   = note: `-D 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:4:16
11   |
12 4 | 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:8:27
17   |
18 8 | 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:13:30
23    |
24 13 | 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:18:8
29    |
30 18 |     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:22:23
35    |
36 22 |     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:28:22
41    |
42 28 |     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:32:11
47    |
48 32 |     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:33:15
53    |
54 33 |     Struct{x: Option<Option<u8>>},
55    |               ^^^^^^^^^^^^^^^^^^
56
57 error: aborting due to 9 previous errors
58