]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/object-safety/object-safety-sized.curr.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / object-safety / object-safety-sized.curr.stderr
index 1a67e79e83d32d4ce9fd65252f9f98f1cb43d86c..54f65c43d9cdef0f9e346b5d8ba4e58ca43a8005 100644 (file)
@@ -1,10 +1,13 @@
 error[E0038]: the trait `Bar` cannot be made into an object
-  --> $DIR/object-safety-sized.rs:12:1
+  --> $DIR/object-safety-sized.rs:12:30
    |
+LL | trait Bar : Sized {
+   |       ---   ----- ...because it requires `Self: Sized`
+   |       |
+   |       this trait cannot be made into an object...
+...
 LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
-   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Bar` cannot be made into an object
-   |
-   = note: the trait cannot require that `Self : Sized`
+   |                              ^^^^^^^^ the trait `Bar` cannot be made into an object
 
 error: aborting due to previous error