rust/tests/ui/option_option.stderr

59 lines
2.3 KiB
Text
Raw Normal View History

2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:11:13
|
11 | fn input(_: Option<Option<u8>>) {
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::option-option` implied by `-D warnings`
2017-12-26 06:25:13 +01:00
2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:14:16
|
14 | fn output() -> Option<Option<u8>> {
| ^^^^^^^^^^^^^^^^^^
2017-12-26 06:25:13 +01:00
2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:18:27
|
18 | fn output_nested() -> Vec<Option<Option<u8>>> {
| ^^^^^^^^^^^^^^^^^^
2017-12-26 06:25:13 +01:00
2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:23:30
2017-12-26 06:25:13 +01:00
|
2018-10-06 18:18:06 +02:00
23 | fn output_nested_nested() -> Option<Option<Option<u8>>> {
2017-12-26 06:25:13 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:28:8
2017-12-26 06:25:13 +01:00
|
2018-10-06 18:18:06 +02:00
28 | x: Option<Option<u8>>,
2017-12-26 06:25:13 +01:00
| ^^^^^^^^^^^^^^^^^^
2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:32:23
2017-12-26 06:25:13 +01:00
|
2018-10-06 18:18:06 +02:00
32 | fn struct_fn() -> Option<Option<u8>> {
2018-01-19 07:10:09 +01:00
| ^^^^^^^^^^^^^^^^^^
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:38:22
2018-01-19 07:10:09 +01:00
|
2018-10-06 18:18:06 +02:00
38 | fn trait_fn() -> Option<Option<u8>>;
2018-01-19 07:10:09 +01:00
| ^^^^^^^^^^^^^^^^^^
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:42:11
2018-01-19 07:10:09 +01:00
|
2018-10-06 18:18:06 +02:00
42 | Tuple(Option<Option<u8>>),
2017-12-26 06:25:13 +01:00
| ^^^^^^^^^^^^^^^^^^
2018-01-17 06:24:33 +01:00
error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to distinguish all 3 cases
2018-10-06 18:18:06 +02:00
--> $DIR/option_option.rs:43:15
2017-12-26 06:25:13 +01:00
|
2018-10-06 18:18:06 +02:00
43 | Struct{x: Option<Option<u8>>},
2017-12-26 06:25:13 +01:00
| ^^^^^^^^^^^^^^^^^^
2018-01-19 07:10:09 +01:00
error: aborting due to 9 previous errors
2018-01-18 06:48:03 +01:00