]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/typeck/issue-46112.stderr
Auto merge of #106850 - cjgillot:issue-106141, r=oli-obk
[rust.git] / tests / ui / typeck / issue-46112.stderr
index f488463ae3ce9faedbd67b008ae8cac5468b11bd..8f5ff51fbe1007cb7e77aa405625b059df75ed5f 100644 (file)
@@ -8,6 +8,13 @@ LL | fn main() { test(Ok(())); }
    |
    = note:   expected enum `Option<()>`
            found unit type `()`
+help: the type constructed contains `()` due to the type of the argument passed
+  --> $DIR/issue-46112.rs:9:18
+   |
+LL | fn main() { test(Ok(())); }
+   |                  ^^^--^
+   |                     |
+   |                     this argument influences the type of `Ok`
 note: tuple variant defined here
   --> $SRC_DIR/core/src/result.rs:LL:COL
 help: try wrapping the expression in `Some`