2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:6:10
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2021-03-19 04:14:48 -05:00
|
|
|
LL | const C: Option<Option<i32>> = None;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2020-04-01 14:15:21 -05:00
|
|
|
note: the lint level is defined here
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:3:9
|
2020-04-01 14:15:21 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::option_option)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2017-12-25 23:25:13 -06:00
|
|
|
|
2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:8:11
|
2021-03-19 04:14:48 -05:00
|
|
|
|
|
|
|
|
LL | static S: Option<Option<i32>> = None;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:11:13
|
2021-03-19 04:14:48 -05:00
|
|
|
|
|
|
|
|
LL | fn input(_: Option<Option<u8>>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:14:16
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn output() -> Option<Option<u8>> {
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2017-12-25 23:25:13 -06:00
|
|
|
|
2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:19:27
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn output_nested() -> Vec<Option<Option<u8>>> {
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2017-12-25 23:25:13 -06:00
|
|
|
|
2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:25:30
|
2017-12-25 23:25:13 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn output_nested_nested() -> Option<Option<Option<u8>>> {
|
2017-12-25 23:25:13 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:31:8
|
2017-12-25 23:25:13 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x: Option<Option<u8>>,
|
2017-12-25 23:25:13 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:36:23
|
2017-12-25 23:25:13 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn struct_fn() -> Option<Option<u8>> {
|
2018-01-19 00:10:09 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:43:22
|
2018-01-19 00:10:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn trait_fn() -> Option<Option<u8>>;
|
2018-01-19 00:10:09 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:48:11
|
2018-01-19 00:10:09 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | Tuple(Option<Option<u8>>),
|
2017-12-25 23:25:13 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 23:24:33 -06:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:50:17
|
2017-12-25 23:25:13 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | Struct { x: Option<Option<u8>> },
|
2018-12-09 23:27:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2017-12-25 23:25:13 -06:00
|
|
|
|
2020-05-22 12:09:24 -05:00
|
|
|
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
|
2024-02-28 07:17:14 -06:00
|
|
|
--> tests/ui/option_option.rs:92:14
|
2020-05-22 12:09:24 -05:00
|
|
|
|
|
|
|
|
LL | foo: Option<Option<Cow<'a, str>>>,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-03-19 04:14:48 -05:00
|
|
|
error: aborting due to 12 previous errors
|
2018-01-17 23:48:03 -06:00
|
|
|
|