]> git.proxmox.com Git - rustc.git/blame - src/test/ui/missing_debug_impls.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / missing_debug_impls.stderr
CommitLineData
74b04a01 1error: type does not implement `std::fmt::Debug`; consider adding `#[derive(Debug)]` or a manual implementation
0731742a 2 --> $DIR/missing_debug_impls.rs:7:1
b7449926 3 |
532ac7d7 4LL | pub enum A {}
b7449926
XL
5 | ^^^^^^^^^^^^^
6 |
74b04a01 7note: the lint level is defined here
0731742a 8 --> $DIR/missing_debug_impls.rs:2:9
b7449926
XL
9 |
10LL | #![deny(missing_debug_implementations)]
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
74b04a01 13error: type does not implement `std::fmt::Debug`; consider adding `#[derive(Debug)]` or a manual implementation
0731742a 14 --> $DIR/missing_debug_impls.rs:20:1
b7449926 15 |
532ac7d7 16LL | pub struct Foo;
b7449926
XL
17 | ^^^^^^^^^^^^^^^
18
19error: aborting due to 2 previous errors
20