summaryrefslogtreecommitdiffstats
path: root/tests/ui/modules/issue-107649.stderr
blob: 1cea71f2829fd98677ada1da7b4c28d2e3fff1a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0277]: `Dummy` doesn't implement `Debug`
   --> $DIR/issue-107649.rs:105:5
    |
105 |     dbg!(lib::Dummy);
    |     ^^^^^^^^^^^^^^^^ `Dummy` cannot be formatted using `{:?}`
    |
    = help: the trait `Debug` is not implemented for `Dummy`
    = note: add `#[derive(Debug)]` to `Dummy` or manually `impl Debug for Dummy`
    = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `dbg` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider annotating `Dummy` with `#[derive(Debug)]`
   --> $DIR/auxiliary/dummy_lib.rs:2:1
    |
2   | #[derive(Debug)]
    |

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.