]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/try-on-option.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / try-on-option.stderr
index db5046f8c151af029bc24d9f3b3a59b5b8c39c55..07615b52a48a5c77a0a9e6530ae0caae5817e1f2 100644 (file)
@@ -10,8 +10,13 @@ LL |     x?;
 error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `std::ops::Try`)
   --> $DIR/try-on-option.rs:13:5
    |
-LL |     x?;
-   |     ^^ cannot use the `?` operator in a function that returns `u32`
+LL | / fn bar() -> u32 {
+LL | |     let x: Option<u32> = None;
+LL | |     x?;
+   | |     ^^ cannot use the `?` operator in a function that returns `u32`
+LL | |     22
+LL | | }
+   | |_- this function should return `Result` or `Option` to accept `?`
    |
    = help: the trait `std::ops::Try` is not implemented for `u32`
    = note: required by `std::ops::Try::from_error`