]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/derives/derives-span-Debug-tuple-struct.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / derives / derives-span-Debug-tuple-struct.stderr
index 7e0039e8a795d43aa993286480fc4d78767fa398..73a88a653f4c6b43803c98e0942b9941f9fd32c2 100644 (file)
@@ -1,13 +1,13 @@
-error[E0277]: `Error` doesn't implement `std::fmt::Debug`
+error[E0277]: `Error` doesn't implement `Debug`
   --> $DIR/derives-span-Debug-tuple-struct.rs:8:5
    |
 LL |     Error
    |     ^^^^^ `Error` cannot be formatted using `{:?}`
    |
-   = help: the trait `std::fmt::Debug` is not implemented for `Error`
-   = note: add `#[derive(Debug)]` or manually implement `std::fmt::Debug`
-   = note: required because of the requirements on the impl of `std::fmt::Debug` for `&Error`
-   = note: required for the cast to the object type `dyn std::fmt::Debug`
+   = help: the trait `Debug` is not implemented for `Error`
+   = note: add `#[derive(Debug)]` or manually implement `Debug`
+   = note: required because of the requirements on the impl of `Debug` for `&Error`
+   = note: required for the cast to the object type `dyn Debug`
    = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
 
 error: aborting due to previous error