]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / ui / recursion / recursive-types-are-not-uninhabited.stderr
index c6f500ec8cc785a39c80dd95e14543987a99753f..dfb69a3cc1b425e11b43d61095ce4b938eb3ed9c 100644 (file)
@@ -11,7 +11,7 @@ LL |     Err(#[stable(feature = "rust1", since = "1.0.0")] E),
    |
    = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
    = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
-   = note: the matched value is of type `std::result::Result<u32, &R>`
+   = note: the matched value is of type `Result<u32, &R>`
 help: you might want to use `if let` to ignore the variant that isn't matched
    |
 LL |     if let Ok(x) = res { /* */ }