]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/option_option.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / option_option.stderr
index 0689a10231bf52121be05418eca3a1b8641914cd..992f14c825fe0aac0754e303d04ad3c08a476719 100644 (file)
@@ -1,7 +1,7 @@
 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:10:13
    |
-10 | fn input(_: Option<Option<u8>>) {}
+LL | fn input(_: Option<Option<u8>>) {}
    |             ^^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::option-option` implied by `-D warnings`
@@ -9,49 +9,49 @@ error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enu
 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:12:16
    |
-12 | fn output() -> Option<Option<u8>> {
+LL | fn output() -> 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:16:27
    |
-16 | fn output_nested() -> Vec<Option<Option<u8>>> {
+LL | fn output_nested() -> Vec<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:21:30
    |
-21 | fn output_nested_nested() -> Option<Option<Option<u8>>> {
+LL | fn output_nested_nested() -> Option<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:26:8
    |
-26 |     x: Option<Option<u8>>,
+LL |     x: 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:30:23
    |
-30 |     fn struct_fn() -> Option<Option<u8>> {
+LL |     fn struct_fn() -> 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:36:22
    |
-36 |     fn trait_fn() -> Option<Option<u8>>;
+LL |     fn trait_fn() -> 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:40:11
    |
-40 |     Tuple(Option<Option<u8>>),
+LL |     Tuple(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:41:17
    |
-41 |     Struct { x: Option<Option<u8>> },
+LL |     Struct { x: Option<Option<u8>> },
    |                 ^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 9 previous errors