rust-clippy/tests/ui/option_option.stderr

81 lines
3.1 KiB
Text
Raw Normal View History

2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:4:10
2018-10-06 16:18:06 +00:00
|
LL | const C: Option<Option<i32>> = None;
| ^^^^^^^^^^^^^^^^^^^
2018-10-06 16:18:06 +00:00
|
2020-04-01 19:15:21 +00:00
note: the lint level is defined here
--> $DIR/option_option.rs:1:9
|
LL | #![deny(clippy::option_option)]
| ^^^^^^^^^^^^^^^^^^^^^
2017-12-26 05:25:13 +00:00
2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:5:11
|
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
--> $DIR/option_option.rs:7:13
|
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
--> $DIR/option_option.rs:9:16
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn output() -> Option<Option<u8>> {
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^
2017-12-26 05:25:13 +00:00
2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:13:27
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn output_nested() -> Vec<Option<Option<u8>>> {
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^
2017-12-26 05:25:13 +00:00
2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:18:30
2017-12-26 05:25:13 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn output_nested_nested() -> Option<Option<Option<u8>>> {
2017-12-26 05:25:13 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:23:8
2017-12-26 05:25:13 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x: Option<Option<u8>>,
2017-12-26 05:25:13 +00:00
| ^^^^^^^^^^^^^^^^^^
2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:27:23
2017-12-26 05:25:13 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn struct_fn() -> Option<Option<u8>> {
2018-01-19 06:10:09 +00:00
| ^^^^^^^^^^^^^^^^^^
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:33:22
2018-01-19 06:10:09 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn trait_fn() -> Option<Option<u8>>;
2018-01-19 06:10:09 +00:00
| ^^^^^^^^^^^^^^^^^^
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:37:11
2018-01-19 06:10:09 +00:00
|
2018-12-27 15:57:55 +00:00
LL | Tuple(Option<Option<u8>>),
2017-12-26 05:25:13 +00:00
| ^^^^^^^^^^^^^^^^^^
2018-01-17 05:24:33 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:38:17
2017-12-26 05:25:13 +00:00
|
2018-12-27 15:57:55 +00:00
LL | Struct { x: Option<Option<u8>> },
2018-12-10 05:27:19 +00:00
| ^^^^^^^^^^^^^^^^^^
2017-12-26 05:25:13 +00:00
2020-05-22 17:09:24 +00:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
--> $DIR/option_option.rs:79:14
2020-05-22 17:09:24 +00:00
|
LL | foo: Option<Option<Cow<'a, str>>>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 12 previous errors
2018-01-18 05:48:03 +00:00