]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-57741.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-57741.stderr
index 6f9e5b08a833f1990dc0ae107d28132f5e33e648..cd277f20ef150cb9c6c973b1a9845df5b1bfeb39 100644 (file)
@@ -4,12 +4,12 @@ error[E0308]: mismatched types
 LL |     let y = match x {
    |                   -
    |                   |
-   |                   this expression has type `std::boxed::Box<T>`
+   |                   this expression has type `Box<T>`
    |                   help: consider dereferencing the boxed value: `*x`
 LL |         T::A(a) | T::B(a) => a,
-   |         ^^^^^^^ expected struct `std::boxed::Box`, found enum `T`
+   |         ^^^^^^^ expected struct `Box`, found enum `T`
    |
-   = note: expected struct `std::boxed::Box<T>`
+   = note: expected struct `Box<T>`
                 found enum `T`
 
 error[E0308]: mismatched types
@@ -18,12 +18,12 @@ error[E0308]: mismatched types
 LL |     let y = match x {
    |                   -
    |                   |
-   |                   this expression has type `std::boxed::Box<T>`
+   |                   this expression has type `Box<T>`
    |                   help: consider dereferencing the boxed value: `*x`
 LL |         T::A(a) | T::B(a) => a,
-   |                   ^^^^^^^ expected struct `std::boxed::Box`, found enum `T`
+   |                   ^^^^^^^ expected struct `Box`, found enum `T`
    |
-   = note: expected struct `std::boxed::Box<T>`
+   = note: expected struct `Box<T>`
                 found enum `T`
 
 error[E0308]: mismatched types
@@ -32,12 +32,12 @@ error[E0308]: mismatched types
 LL |     let y = match x {
    |                   -
    |                   |
-   |                   this expression has type `std::boxed::Box<S>`
+   |                   this expression has type `Box<S>`
    |                   help: consider dereferencing the boxed value: `*x`
 LL |         S::A { a } | S::B { b: a } => a,
-   |         ^^^^^^^^^^ expected struct `std::boxed::Box`, found enum `S`
+   |         ^^^^^^^^^^ expected struct `Box`, found enum `S`
    |
-   = note: expected struct `std::boxed::Box<S>`
+   = note: expected struct `Box<S>`
                 found enum `S`
 
 error[E0308]: mismatched types
@@ -46,12 +46,12 @@ error[E0308]: mismatched types
 LL |     let y = match x {
    |                   -
    |                   |
-   |                   this expression has type `std::boxed::Box<S>`
+   |                   this expression has type `Box<S>`
    |                   help: consider dereferencing the boxed value: `*x`
 LL |         S::A { a } | S::B { b: a } => a,
-   |                      ^^^^^^^^^^^^^ expected struct `std::boxed::Box`, found enum `S`
+   |                      ^^^^^^^^^^^^^ expected struct `Box`, found enum `S`
    |
-   = note: expected struct `std::boxed::Box<S>`
+   = note: expected struct `Box<S>`
                 found enum `S`
 
 error: aborting due to 4 previous errors