]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/box-into-boxed-slice-fail.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / box-into-boxed-slice-fail.stderr
index b3e7b5b4feea4b6c446a14ed799e0e95ed1ef0d3..8cfa3668d92a0eb6bb7edf8009bcacd120341615 100644 (file)
@@ -1,37 +1,37 @@
 error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
-  --> $DIR/box-into-boxed-slice-fail.rs:8:35
+  --> $DIR/box-into-boxed-slice-fail.rs:7:35
    |
 LL |     let _ = Box::into_boxed_slice(boxed_slice);
    |                                   ^^^^^^^^^^^ doesn't have a size known at compile-time
    |
-   = help: the trait `std::marker::Sized` is not implemented for `[u8]`
-   = note: required by `std::boxed::Box::<T>::into_boxed_slice`
+   = help: the trait `Sized` is not implemented for `[u8]`
+   = note: required by `Box::<T>::into_boxed_slice`
 
 error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
-  --> $DIR/box-into-boxed-slice-fail.rs:8:13
+  --> $DIR/box-into-boxed-slice-fail.rs:7:13
    |
 LL |     let _ = Box::into_boxed_slice(boxed_slice);
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
    |
-   = help: the trait `std::marker::Sized` is not implemented for `[u8]`
+   = help: the trait `Sized` is not implemented for `[u8]`
    = note: slice and array elements must have `Sized` type
 
-error[E0277]: the size for values of type `dyn std::fmt::Debug` cannot be known at compilation time
-  --> $DIR/box-into-boxed-slice-fail.rs:12:35
+error[E0277]: the size for values of type `dyn Debug` cannot be known at compilation time
+  --> $DIR/box-into-boxed-slice-fail.rs:11:35
    |
 LL |     let _ = Box::into_boxed_slice(boxed_trait);
    |                                   ^^^^^^^^^^^ doesn't have a size known at compile-time
    |
-   = help: the trait `std::marker::Sized` is not implemented for `dyn std::fmt::Debug`
-   = note: required by `std::boxed::Box::<T>::into_boxed_slice`
+   = help: the trait `Sized` is not implemented for `dyn Debug`
+   = note: required by `Box::<T>::into_boxed_slice`
 
-error[E0277]: the size for values of type `dyn std::fmt::Debug` cannot be known at compilation time
-  --> $DIR/box-into-boxed-slice-fail.rs:12:13
+error[E0277]: the size for values of type `dyn Debug` cannot be known at compilation time
+  --> $DIR/box-into-boxed-slice-fail.rs:11:13
    |
 LL |     let _ = Box::into_boxed_slice(boxed_trait);
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
    |
-   = help: the trait `std::marker::Sized` is not implemented for `dyn std::fmt::Debug`
+   = help: the trait `Sized` is not implemented for `dyn Debug`
    = note: slice and array elements must have `Sized` type
 
 error: aborting due to 4 previous errors